Annotation Interface RequestProtected


@Target(FIELD) @Retention(RUNTIME) @Documented public @interface RequestProtected
Annotation for binding to indicate a property is protected (should not allow 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.
  • Element Details

    • method

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

      For example you might prevent a property from being updated on POST only. For other request methods, the default view security level will be used (unless the RequestAccess annotation is also present)

      Default:
      {}