public class CasFilter extends AuthenticatingFilter
shiro.ini:
[main] casFilter = org.apache.shiro.cas.CasFilter ... [urls] /shiro-cas = casFilter ...(example : http://host:port/mycontextpath/shiro-cas)
GET_METHOD, LOGIN_URL, pathMatcher, POST_METHOD, REDIRECT_TO_SAVED_URL, SUCCESS_URL, TAPESTRY_VERSION, UNAUTHORIZED_URL| Constructor and Description |
|---|
CasFilter(LoginContextService loginContextService) |
| Modifier and Type | Method and Description |
|---|---|
protected org.apache.shiro.authc.AuthenticationToken |
createToken(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
The token created for this authentication is a CasToken containing the CAS service ticket received on the CAS service url (on which
the filter must be configured).
|
protected boolean |
isAccessAllowed(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
Object mappedValue)
Returns
false to always force authentication (user is never considered authenticated by this filter). |
protected boolean |
onAccessDenied(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
Execute login by creating
token and logging subject
with this token. |
protected boolean |
onLoginFailure(org.apache.shiro.authc.AuthenticationToken token,
org.apache.shiro.authc.AuthenticationException ae,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
If login has failed, redirect user to the CAS error page (no ticket or ticket validation failed) except if the user is already
authenticated, in which case redirect to the default success url.
|
protected boolean |
onLoginSuccess(org.apache.shiro.authc.AuthenticationToken token,
org.apache.shiro.subject.Subject subject,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
If login has been successful, redirect user to the original protected url.
|
void |
setFailureUrl(String failureUrl) |
createToken, createToken, executeLogin, getHost, isRememberMeissueSuccessRedirectaddConfig, getLoginContextService, getLoginUrl, getSubject, getSuccessUrl, getUnauthorizedUrl, isLoginRequest, isRedirectToSavedUrl, onAccessDenied, onPreHandle, preHandle, redirectToLogin, saveRequest, saveRequestAndRedirectToLogin, setConfig, setLoginUrl, setRedirectToSavedUrl, setSuccessUrl, setUnauthorizedUrlafterCompletion, cleanup, doFilterInternal, executeChain, postHandledoFilter, getAlreadyFilteredAttributeName, isEnabled, isEnabled, setEnabled, shouldNotFiltergetName, setName, toStringBuilderdestroy, getFilterConfig, getInitParam, init, onFilterConfigSet, setFilterConfigpublic CasFilter(LoginContextService loginContextService)
protected org.apache.shiro.authc.AuthenticationToken createToken(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
throws Exception
createToken in class AuthenticatingFilterrequest - the incoming requestresponse - the outgoing responseException - if there is an error processing the request.protected boolean onAccessDenied(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
throws Exception
token and logging subject
with this token.onAccessDenied in class AccessControlFilterrequest - the incoming requestresponse - the outgoing responsetrue if the request should continue to be processed; false if the subclass will
handle/render the response directly.Exception - if there is an error processing the request.protected boolean isAccessAllowed(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
Object mappedValue)
false to always force authentication (user is never considered authenticated by this filter).isAccessAllowed in class AuthenticationFilterrequest - the incoming requestresponse - the outgoing responsemappedValue - the filter-specific config value mapped to this filter in the URL rules mappings.falseprotected boolean onLoginSuccess(org.apache.shiro.authc.AuthenticationToken token,
org.apache.shiro.subject.Subject subject,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
throws Exception
onLoginSuccess in class AuthenticatingFiltertoken - the token representing the current authenticationsubject - the current authenticated subjetrequest - the incoming requestresponse - the outgoing responseException - if there is an error processing the request.protected boolean onLoginFailure(org.apache.shiro.authc.AuthenticationToken token,
org.apache.shiro.authc.AuthenticationException ae,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
onLoginFailure in class AuthenticatingFiltertoken - the token representing the current authenticationae - the current authentication exceptionrequest - the incoming requestresponse - the outgoing responsepublic void setFailureUrl(String failureUrl)
Copyright © 2004–2015. All rights reserved.