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 raw form field value (whether on a Struts Action or model of ModelDriven Struts Action) that should be modified before validation and conversion using a client supplied adjuster.
    Defines a single value 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 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 how a form field value (whether on a Struts Action or model of ModelDriven Struts Action) that is an array or collection should be modified after conversion and post-conversion adjustment of individual entries but before post conversion validation using a client supplied adjuster.
    Defines custom validation of an array or collection of converted values and error message to display if this fails.
    Defines how a single value form field value (whether on a Struts Action or model of ModelDriven Struts Action) that should be modified after conversion but before post conversion validation using a client supplied adjuster.
    Defines custom validation of a converted value and error message to display if this fails.
    Defines a single value 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 DefafultDisplayFormatter#updateDisplay.
    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 Viewer Action as receiving an injected form processed by a Form Processing Action, whether successfully or not.
    Form validation success/fail states accepted by receiving Action.
    Annotates an otherwise non-annotated form field (whether on a Struts Action or model of ModelDriven Struts Action) so it's not ignored by AnnotationValidationInterceptor2 instances configured to ignore non-annotated fields.
    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.
    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 number of entries of an integer collection or array is less than the minimum.
    Defines error message to display if number of entries of a string collection or array is less than the minimum.
    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 null and empty string entries of a string collection or array form field (whether on a Struts Action or model of ModelDriven Struts Action) should be deleted.
    Defines null entries of an integer collection or array form field (whether on a Struts Action or model of ModelDriven Struts Action) should be deleted.
    Defines error message to display if a form field (whether on a Struts Action or model of ModelDriven Struts Action) has not been set.
    Where to write messages.
    Defines error message to display if any entry of an integer collection or array is null.
    Defines error message to display if any entry of a string collection or array is null or empty string.
    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 entries of a integer collection or array form field (whether on a Struts Action or model of ModelDriven Struts Action) should be sorted.
    Defines entries of a string collection or array form field (whether on a Struts Action or model of ModelDriven Struts Action) should be sorted according to String.compareTo().
    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.
    Sets the time part of a date form field (whether on a Struts Action or model of ModelDriven Struts Action) to the last millisecond of the day.
    Defines a form field value (whether on a Struts Action or model of ModelDriven Struts Action) should be modified using the String.toLowerCase() function.
    Sets the time part of a date form field (whether on a Struts Action or model of ModelDriven Struts Action) to midnight, the start of the day.
    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.
    Defines each entry of a string collection or array form field (whether on a Struts Action or model of ModelDriven Struts Action) should be trimmed using the String.trim() function.