Annotation Types Summary |
Jpf.Action |
Method-level annotation that configures an action method. |
Jpf.ActionOutput |
An action output, which is declared in a @Jpf.Forward annotation and passed from an action
method on a Forward object. |
Jpf.Catch |
A declarative "catch" for exceptions thrown from actions (Jpf.Action , Jpf.SimpleAction ). |
Jpf.CommandHandler |
Method-level annotation that configures a JavaServerFaces command handler which intends to raise Page Flow
actions. |
Jpf.ConditionalForward |
Annotation used within Jpf.SimpleAction to forward conditionally, based on the evaluation of a JSP 2.0-style
expression. |
Jpf.Controller |
Main class-level annotation required to be present on all page flow
(PageFlowController -derived) and shared flow
(SharedFlowController -derived) classes. |
Jpf.ExceptionHandler |
Method-level annotation that configures an exception handler method, which is invoked when a Jpf.Catch is
triggered. |
Jpf.FacesBacking |
A class-level annotation that denotes a JavaServer Faces backing bean. |
Jpf.FormBean |
An optional class-level annotation that can be used on form bean classes with validation rules. |
Jpf.Forward |
A destination that is used by actions (Jpf.Action , Jpf.SimpleAction ) and exception handlers
Jpf.ExceptionHandler . |
Jpf.MessageArg |
A message argument used within field validation annotations. |
Jpf.MessageBundle |
Annotation used within Jpf.Controller to declare a message bundle for use in the page flow. |
Jpf.PageFlowField |
An annotation that causes a field to get automatically initialized with a reference to the current
PageFlowController . |
Jpf.RaiseAction |
An annotation used within Jpf.CommandHandler to specify that a form bean should be sent when a particular
Page Flow action is raised. |
Jpf.SharedFlowField |
An annotation that causes a field to get automatically initialized with a reference to a
SharedFlowController . |
Jpf.SharedFlowRef |
Declaration of a shared flow reference, which maps a local shared flow name to an actual shared flow type. |
Jpf.SimpleAction |
A "simple" action, which defines its behavior wholly through an annotation, rather than through a method. |
Jpf.ValidatableBean |
A set of validatable property definitions that will be applied against particular bean type. |
Jpf.ValidatableProperty |
A set of validation rules that will be applied against a property. |
Jpf.ValidateCreditCard |
A validation rule that will fail if it is applied to a property that has a non-empty value which is not a valid
credit card number. |
Jpf.ValidateCustomRule |
A validation rule that will fail when a given custom ValidatorPlugIn rule fails. |
Jpf.ValidateCustomVariable |
A variable name/value that is used by Jpf.ValidateCustomRule . |
Jpf.ValidateDate |
A validation rule that will fail if it is applied to a property that has a non-empty value which is not a date
in a given format. |
Jpf.ValidateEmail |
A validation rule that will fail if it is applied to a property that has a non-empty value which is not a valid
email address. |
Jpf.ValidateMask |
A validation rule that will fail if it is applied to a property that has a non-empty value which does not match
a given regular expression. |
Jpf.ValidateMaxLength |
A validation rule that will fail if it is applied to a property that has a non-empty value whose length is
greater than a given number of characters. |
Jpf.ValidateMinLength |
A validation rule that will fail if it is applied to a property that has a non-empty value whose length is less
than a given number of characters. |
Jpf.ValidateRange |
A validation rule that will fail if it is applied to a property that has a non-empty value which is not a number
within a given range. |
Jpf.ValidateRequired |
A validation rule that will fail if it is applied to a property that has no value. |
Jpf.ValidateType |
A validation rule that will fail if it is applied to a property that has a non-empty value which cannot be
converted to a given primitive type. |
Jpf.ValidateURL |
A validation rule that will fail when it is applied to a property that has a non-empty value that is an invalid
URL. |
Jpf.ValidateValidWhen |
A validation rule that will fail when it is applied to a property that has a non-empty value, and when a given
expression does not evaluate to true . |
Jpf.ValidationLocaleRules |
A set of validation rules that will be applied for a particular locale. |
Jpf.ViewProperties |
Optional class-level annotation that can store tool-specific view properties. |