Annotation Type PropertyValue


  • @Target(PARAMETER)
    @Retention(RUNTIME)
    public @interface PropertyValue
    Annotation that indicates method parameter should be bound to some property value of the request context.
    Since:
    1.2
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      boolean required
      Returns whether the property value is required.
      java.lang.String value
      Returns the property key string.
    • Element Detail

      • value

        java.lang.String value
        Returns the property key string.
        Returns:
        the property key string
        Default:
        ""
      • required

        boolean required
        Returns whether the property value is required.

        The default is true.

        Returns:
        whether the property value is required
        Default:
        true