|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||
@Retention(value=RUNTIME) @Target(value=METHOD) @Documented public @interface SubmissionHandler
Declares that the annotated method will be used as a submission handler.
The method should be in the format "doSubmissionName". The
"do" prefix indicates that it's a submission handler and
the rest of the method name will be used as the name of the submission
(with a lower-cased initial character).
When the element is processed and a submission was received with the
same name as the handler, the handler method will be executed instead of
the "processElement" method.
Submission| Optional Element Summary | |
|---|---|
SubmissionBean[] |
beans
The submission's beans. |
SubmissionHandler.Continuations |
continuations
Indicates whether the continuations should be preserved or cancelled when this submission is sent. |
FileRegexp[] |
fileRegexps
The submission's regular expression file uploads. |
File[] |
files
The submission's uploaded files. |
ParamRegexp[] |
paramRegexps
The submission's regular expression parameters. |
Param[] |
params
The submission's parameters. |
SubmissionHandler.Scope |
scope
The submission's scope. |
public abstract SubmissionHandler.Scope scope
public abstract Param[] params
public abstract ParamRegexp[] paramRegexps
public abstract SubmissionBean[] beans
public abstract File[] files
public abstract FileRegexp[] fileRegexps
public abstract SubmissionHandler.Continuations continuations
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||