public class UserRoleAuthorizationInterceptor extends HandlerInterceptorAdapter
PortletRequest.isUserInRole(java.lang.String)| Constructor and Description |
|---|
UserRoleAuthorizationInterceptor() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
handleNotAuthorized(PortletRequest request,
PortletResponse response,
Object handler)
Handle a request that is not authorized according to this interceptor.
|
boolean |
preHandle(PortletRequest request,
PortletResponse response,
Object handler)
Default callback that all "pre*" methods delegate to.
|
void |
setAuthorizedRoles(String[] authorizedRoles)
Set the roles that this interceptor should treat as authorized.
|
afterActionCompletion, afterCompletion, afterEventCompletion, afterRenderCompletion, afterResourceCompletion, postHandleRender, postHandleResource, preHandleAction, preHandleEvent, preHandleRender, preHandleResourcepublic final void setAuthorizedRoles(String[] authorizedRoles)
authorizedRoles - array of role namespublic final boolean preHandle(PortletRequest request, PortletResponse response, Object handler) throws PortletException, IOException
HandlerInterceptorAdapterThis implementation always returns true.
preHandle in class HandlerInterceptorAdapterPortletExceptionIOExceptionprotected void handleNotAuthorized(PortletRequest request, PortletResponse response, Object handler) throws PortletException, IOException
This method can be overridden to write a custom message, forward or redirect to some error page or login page, or throw a PortletException.
request - current portlet requestresponse - current portlet responsehandler - chosen handler to execute, for type and/or instance evaluationPortletException - if there is an internal errorIOException - in case of an I/O error when writing the response