com.uwyn.rife.engine.annotations |
Provides annotations to declare elements and site-structures for RIFE's web engine.
|
Java Source File Name | Type | Comment |
Autolink.java | Annotation | Declares an auto link for the element. |
ChildTrigger.java | Annotation | Declares a child trigger. |
Datalink.java | Annotation | Declares a data link for the element. |
Elem.java | Annotation | Declares that a Java class is a RIFE element.
If
Elem.id isn't specified, the short class name (without the
package) will be used as the element's ID. |
Exit.java | Annotation | Declares an exit. |
ExitField.java | Annotation | Declares an exit. |
File.java | Annotation | Declares a file upload during a submission. |
FileProperty.java | Annotation | Declares that the bean property that corresponds to the annotated setter
will be used to inject an uploaded submission file. |
FileRegexp.java | Annotation | Declares a file upload regular expression during a submission. |
Flowlink.java | Annotation | Declares a flow link for the element. |
FlowlinkExitField.java | Annotation | Declares a flow link for the element. |
InBean.java | Annotation | Declares an input bean. |
InBeanProperty.java | Annotation | Declares that the bean property that corresponds to the annotated setter
will be used as an input bean. |
InCookie.java | Annotation | Declares an incookie. |
InCookieProperty.java | Annotation | Declares that the bean property that corresponds to the annotated setter
will be used as an incookie. |
Input.java | Annotation | Declares an input. |
InputProperty.java | Annotation | Declares that the bean property that corresponds to the annotated setter
will be used as an input. |
Mapping.java | Annotation | Defines the input mapping of a pathinfo declaration. |
OutBean.java | Annotation | Declares an output bean. |
OutBeanProperty.java | Annotation | Declares that the bean property that corresponds to the annotated getter
will be used as an output bean. |
OutCookie.java | Annotation | Declares an outcookie. |
OutCookieProperty.java | Annotation | Declares that the bean property that corresponds to the annotated getter
will be used as an outcookie. |
Output.java | Annotation | Declares an output. |
OutputProperty.java | Annotation | Declares that the bean property that corresponds to the annotated getter
will be used as an output. |
Param.java | Annotation | Declares a submission parameter. |
ParamProperty.java | Annotation | Declares that the bean property that corresponds to the annotated setter
will be used as a submission parameter. |
ParamRegexp.java | Annotation | Declares a regexp submission parameter. |
Pathinfo.java | Annotation | Declares the URL pathinfo for an element. |
Priority.java | Annotation | Specifies a declaration priority for an element method.
The main reason is to be able to group
SubmissionHandler annotations
together with the related
FileProperty ,
ParamProperty and
SubmissionBeanProperty annotations.
The priority is provided as an array of integers. |
Submission.java | Annotation | Declares a submission. |
SubmissionBean.java | Annotation | Declares a submission bean. |
SubmissionBeanProperty.java | Annotation | Declares that the bean property that corresponds to the annotated setter
will be used as a submission bean. |
SubmissionHandler.java | Annotation | Declares that the annotated method will be used as a submission handler.
The method should be in the format "doSubmissionName ". |