Annotation Interface RequestAccessible


@Target(FIELD) @Retention(RUNTIME) @Documented public @interface RequestAccessible
Annotation for binding to indicate a property is accessible (allows updates).
Author:
Kuali Rice Team (rice.collab@kuali.org)
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    org.springframework.web.bind.annotation.RequestMethod[]
    HTTP methods that annotation should apply to.
    List of method names on the controller class that the binding should occur for.
  • Element Details

    • method

      org.springframework.web.bind.annotation.RequestMethod[] method
      HTTP methods that annotation should apply to.

      For example you might want to allow updates for GET only. For other request methods, the default view security level will be used (unless the RequestProtected annotation is also present)

      Default:
      {}
    • methodToCalls

      String[] methodToCalls
      List of method names on the controller class that the binding should occur for.

      For example you might want to restrict binding for only certain methodToCall(s). For other methodToCalls not in the list, no binding will occur.

      Default:
      {}