Annotation Interface OnCheck


@Documented @Target(METHOD) @Retention(RUNTIME) public @interface OnCheck
The annotated static methods are invoked with one optional argument HttpServletRequest for checking whether the controller owing them is appropriate for the browser who sent the request. The methods are supposed to return true if and only if the controller is appropriate. The methods are executed in the thread of the corresponding HTTP request. Thread locals set by interceptors or filters, thus, are accessible from the methods. Not necessarily have to check roles the request has since it is guaranteed that the request has all roles specified at Controller.roles().
 @OnCheck
 static boolean onCheck( HttpServletRequest request ){
     // Returns true if and only if a controller is appropriate for the browser who sent the request.
     return true;
 }