Package name.matthewgreet.strutscommons.annotation


package name.matthewgreet.strutscommons.annotation
Annotations used in annotation-based validation and form storage/retrieval.
  • Class
    Description
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be converted to a BigDecimal type and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be converted to a boolean or Boolean type.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a byte or Byte type and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a char or Character type and error message to display if this fails.
    Defines how a form field value (whether on a Struts Action or model of ModelDriven Struts Action) that should be modified using a client supplied adjuster.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be converted using a client supplied collection converter to a recipient field of some type of collection and error message to display if this fails.
    Defines custom validation of a collection of converted values and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be converted using a client supplied converter to another and error message to display if this fails.
    Defines custom validation of a converted value and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) to be validated using a client supplied validator and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a Date type and error message to display if this fails.
     
    Marks a string field of a view helper not to receive a formatted value using DefaultDisplayFormatter.updateDisplay(java.lang.Class<?>, java.lang.Object, java.lang.Object).
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a double or Double type and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a enumerated type and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a float or Float type and error message to display if this fails.
    Defines a member variable of a Struts action as receiving an injected form processed by another Struts action, whether successfully or not, usually to display it.
    Form validation success/fail states accepted by receiving Action.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a int or Integer type and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed from comma separated values to some collection type of Integer and error message to display if this fails.
    Defines error message to display if an integer is not within a range.
    Defines a String form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a recipient field of long or Long type and error message to display if this fails.
    Defines a non-String form field (whether on a Struts Action or model of ModelDriven Struts Action) must be converted from request parameters using Form.manualParameterConvert(java.util.Map<java.lang.String, java.lang.String>, com.opensymphony.xwork2.interceptor.ValidationAware, com.opensymphony.xwork2.TextProvider).
    Defines error message to display if a String form field (whether on a Struts Action or model of ModelDriven Struts Action) exceeds a maximum length.
    Defines error message to display if an integer is less than a minimum value.
    Defines error message to display if a String form field (whether on a Struts Action or model of ModelDriven Struts Action) does not match a regular expression.
    Defines error message to display if a form field (whether on a Struts Action or model of ModelDriven Struts Action) has not been set.
    Message for any error messages.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed to a short or Short type and error message to display if this fails.
    Defines a form field (whether on a Struts Action or model of ModelDriven Struts Action) should be parsed from comma separated values to some collection of String.
    Defines a form field value (whether on a Struts Action or model of ModelDriven Struts Action) should be modified using the String.toLowerCase() function.
    Defines a form field value (whether on a Struts Action or model of ModelDriven Struts Action) should be modified using the String.toUpperCase() function.
    Defines a form field value (whether on a Struts Action or model of ModelDriven Struts Action) should be trimmed using the String.trim() function.