Class AbstractAuthorizingInInterceptor
java.lang.Object
org.apache.cxf.phase.AbstractPhaseInterceptor<Message>
org.apache.cxf.interceptor.security.AbstractAuthorizingInInterceptor
- All Implemented Interfaces:
- Interceptor<Message>,- PhaseInterceptor<Message>
- Direct Known Subclasses:
- SimpleAuthorizingInterceptor
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected booleanauthorize(SecurityContext sc, Method method) getDenyRoles(Method method) Returns a list of roles to be denied for a given method.getExpectedRoles(Method method) Returns a list of expected roles for a given method.voidhandleMessage(Message message) Intercepts a message.booleanprotected booleanisMethodProtected(Method method) protected booleanisUserInRole(SecurityContext sc, List<String> roles, boolean deny) voidsetAllowAnonymousUsers(boolean allowAnonymousUsers) Methods inherited from class org.apache.cxf.phase.AbstractPhaseInterceptoraddAfter, addAfter, addBefore, addBefore, getAdditionalInterceptors, getAfter, getBefore, getId, getPhase, handleFault, isGET, isRequestor, setAfter, setBefore
- 
Constructor Details- 
AbstractAuthorizingInInterceptorpublic AbstractAuthorizingInInterceptor()
- 
AbstractAuthorizingInInterceptorpublic AbstractAuthorizingInInterceptor(boolean uniqueId) 
 
- 
- 
Method Details- 
handleMessageDescription copied from interface:InterceptorIntercepts a message. Interceptors should NOT invoke handleMessage or handleFault on the next interceptor - the interceptor chain will take care of this.
- 
authorize
- 
isMethodProtected
- 
isUserInRole
- 
getExpectedRolesReturns a list of expected roles for a given method.- Parameters:
- method- Method
- Returns:
- list, empty if no roles are available
 
- 
getDenyRolesReturns a list of roles to be denied for a given method.- Parameters:
- method- Method
- Returns:
- list, empty if no roles are available
 
- 
isAllowAnonymousUserspublic boolean isAllowAnonymousUsers()
- 
setAllowAnonymousUserspublic void setAllowAnonymousUsers(boolean allowAnonymousUsers) 
 
-