@Target(value=FIELD) @Retention(value=RUNTIME) @Documented public @interface RequestAccessible
Modifier and Type | Optional Element and Description |
---|---|
org.springframework.web.bind.annotation.RequestMethod[] |
method
HTTP methods that annotation should apply to.
|
String[] |
methodToCalls
List of method names on the controller class that the binding should occur for.
|
public abstract org.springframework.web.bind.annotation.RequestMethod[] method
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)
public abstract String[] methodToCalls
For example you might want to restrict binding for only certain methodToCall(s). For other methodToCalls not in the list, no binding will occur.
Copyright © 2005–2015 The Kuali Foundation. All rights reserved.