Package org.pac4j.cas.client.direct
Class DirectCasProxyClient
- java.lang.Object
-
- org.pac4j.core.util.InitializableObject
-
- org.pac4j.core.client.BaseClient
-
- org.pac4j.core.client.DirectClient
-
- org.pac4j.cas.client.direct.DirectCasProxyClient
-
- All Implemented Interfaces:
org.pac4j.core.client.Client
public class DirectCasProxyClient extends org.pac4j.core.client.DirectClientThis class is the direct client to authenticate users based on CAS proxy tickets.
The configuration can be defined via the
configurationobject.As no session is meant to be created, this client does not handle CAS logout requests.
For proxy support, a
CasProxyReceptormust be defined in the configuration (the corresponding "callback filter" must be enabled) and set to the CAS configuration of this client. In that case, aCasProxyProfilewill be return (instead of aCasProfile) to be able to request proxy tickets.- Since:
- 1.9.2
- Author:
- Jerome Leleu
-
-
Constructor Summary
Constructors Constructor Description DirectCasProxyClient()DirectCasProxyClient(CasConfiguration casConfiguration, java.lang.String serviceUrl)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.pac4j.core.http.callback.CallbackUrlResolvergetCallbackUrlResolver()CasConfigurationgetConfiguration()java.lang.StringgetServiceUrl()org.pac4j.core.http.url.UrlResolvergetUrlResolver()protected voidinternalInit(boolean forceReinit)voidsetCallbackUrlResolver(org.pac4j.core.http.callback.CallbackUrlResolver callbackUrlResolver)voidsetConfiguration(CasConfiguration configuration)voidsetServiceUrl(java.lang.String serviceUrl)voidsetUrlResolver(org.pac4j.core.http.url.UrlResolver urlResolver)java.lang.StringtoString()-
Methods inherited from class org.pac4j.core.client.DirectClient
afterInternalInit, beforeInternalInit, getCredentials, getLogoutAction, getRedirectionAction
-
Methods inherited from class org.pac4j.core.client.BaseClient
addAuthorizationGenerator, addAuthorizationGenerators, defaultAuthenticator, defaultCredentialsExtractor, defaultProfileCreator, getAuthenticator, getAuthorizationGenerators, getCredentialsExtractor, getCustomProperties, getName, getProfileCreator, getProfileFactoryWhenNotAuthenticated, getSaveProfileInSession, getUserProfile, isMultiProfile, notifySessionRenewal, renewUserProfile, retrieveCredentials, retrieveUserProfile, setAuthenticator, setAuthorizationGenerator, setAuthorizationGenerators, setAuthorizationGenerators, setCredentialsExtractor, setCustomProperties, setMultiProfile, setName, setProfileCreator, setProfileFactoryWhenNotAuthenticated, setSaveProfileInSession
-
-
-
-
Constructor Detail
-
DirectCasProxyClient
public DirectCasProxyClient()
-
DirectCasProxyClient
public DirectCasProxyClient(CasConfiguration casConfiguration, java.lang.String serviceUrl)
-
-
Method Detail
-
internalInit
protected void internalInit(boolean forceReinit)
- Specified by:
internalInitin classorg.pac4j.core.util.InitializableObject
-
getConfiguration
public CasConfiguration getConfiguration()
-
setConfiguration
public void setConfiguration(CasConfiguration configuration)
-
getServiceUrl
public java.lang.String getServiceUrl()
-
setServiceUrl
public void setServiceUrl(java.lang.String serviceUrl)
-
getUrlResolver
public org.pac4j.core.http.url.UrlResolver getUrlResolver()
-
setUrlResolver
public void setUrlResolver(org.pac4j.core.http.url.UrlResolver urlResolver)
-
getCallbackUrlResolver
public org.pac4j.core.http.callback.CallbackUrlResolver getCallbackUrlResolver()
-
setCallbackUrlResolver
public void setCallbackUrlResolver(org.pac4j.core.http.callback.CallbackUrlResolver callbackUrlResolver)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classorg.pac4j.core.client.DirectClient
-
-