Package org.kuali.rice.krad.web.bind
Annotation 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 ElementsModifier and TypeOptional ElementDescriptionorg.springframework.web.bind.annotation.RequestMethod[]HTTP methods that annotation should apply to.String[]List of method names on the controller class that the binding should occur for.
-
Element Details
-
method
org.springframework.web.bind.annotation.RequestMethod[] methodHTTP 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[] methodToCallsList 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:
{}
-