Package org.apereo.cas.web.flow
Interface DelegatedClientAuthenticationWebflowManager
-
public interface DelegatedClientAuthenticationWebflowManager- Since:
- 6.4.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDEFAULT_BEAN_NAMEDefault implementation bean name.static java.lang.StringPARAMETER_CLIENT_IDClient identifier associated with this session/request.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apereo.cas.authentication.principal.Serviceretrieve(org.springframework.webflow.execution.RequestContext requestContext, org.pac4j.core.context.WebContext webContext, org.pac4j.core.client.Client client)Retrieve.org.apereo.cas.ticket.TransientSessionTicketstore(org.springframework.webflow.execution.RequestContext requestContext, org.pac4j.jee.context.JEEContext webContext, org.pac4j.core.client.Client client)Store.
-
-
-
Field Detail
-
PARAMETER_CLIENT_ID
static final java.lang.String PARAMETER_CLIENT_ID
Client identifier associated with this session/request.- See Also:
- Constant Field Values
-
DEFAULT_BEAN_NAME
static final java.lang.String DEFAULT_BEAN_NAME
Default implementation bean name.- See Also:
- Constant Field Values
-
-
Method Detail
-
store
org.apereo.cas.ticket.TransientSessionTicket store(org.springframework.webflow.execution.RequestContext requestContext, org.pac4j.jee.context.JEEContext webContext, org.pac4j.core.client.Client client) throws java.lang.ExceptionStore.- Parameters:
requestContext- the request contextwebContext- the web contextclient- the client- Returns:
- the transient session ticket
- Throws:
java.lang.Exception- the exception
-
retrieve
org.apereo.cas.authentication.principal.Service retrieve(org.springframework.webflow.execution.RequestContext requestContext, org.pac4j.core.context.WebContext webContext, org.pac4j.core.client.Client client) throws java.lang.ExceptionRetrieve.- Parameters:
requestContext- the request contextwebContext- the web contextclient- the client- Returns:
- the service
- Throws:
java.lang.Exception- the exception
-
-