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)
PERMISSIVEDEFAULT_SUCCESS_URLDEFAULT_LOGIN_URL, GET_METHOD, POST_METHODappliedPaths, pathMatcherALREADY_FILTERED_SUFFIXfilterConfig| Constructor and Description |
|---|
CasFilter() |
| Modifier and Type | Method and Description |
|---|---|
protected 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(AuthenticationToken token,
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(AuthenticationToken token,
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) |
cleanup, createToken, createToken, executeLogin, getHost, isPermissive, isRememberMegetSuccessUrl, issueSuccessRedirect, setSuccessUrlgetLoginUrl, getSubject, isLoginRequest, onAccessDenied, onPreHandle, redirectToLogin, saveRequest, saveRequestAndRedirectToLogin, setLoginUrlgetPathWithinApplication, isEnabled, pathsMatch, pathsMatch, preHandle, processPathConfigafterCompletion, doFilterInternal, executeChain, postHandledoFilter, getAlreadyFilteredAttributeName, isEnabled, isEnabled, setEnabled, shouldNotFiltergetName, setName, toStringBuilderdestroy, getFilterConfig, getInitParam, init, onFilterConfigSet, setFilterConfiggetContextAttribute, getContextInitParam, getServletContext, removeContextAttribute, setContextAttribute, setServletContext, toStringprotected 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 responseException - 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 AuthenticatingFilterrequest - the incoming requestresponse - the outgoing responsemappedValue - the filter-specific config value mapped to this filter in the URL rules mappings.falseprotected boolean onLoginSuccess(AuthenticationToken token, 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(AuthenticationToken token, 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-2016 The Apache Software Foundation. All Rights Reserved.