Package org.apereo.cas.pac4j.client
Interface DelegatedClientAuthenticationRequestCustomizer
-
- All Superinterfaces:
org.springframework.core.Ordered
public interface DelegatedClientAuthenticationRequestCustomizer extends org.springframework.core.Ordered- Since:
- 6.4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidcustomize(org.pac4j.core.client.IndirectClient client, org.pac4j.core.context.WebContext webContext)Customize.default intgetOrder()booleanisAuthorized(org.pac4j.core.context.JEEContext webContext, org.pac4j.core.client.IndirectClient client, org.apereo.cas.authentication.principal.WebApplicationService currentService)Is client authorized for use in this context.booleansupports(org.pac4j.core.client.IndirectClient client, org.pac4j.core.context.WebContext webContext)Supports.
-
-
-
Method Detail
-
customize
void customize(org.pac4j.core.client.IndirectClient client, org.pac4j.core.context.WebContext webContext)Customize.- Parameters:
client- the clientwebContext- the web context
-
supports
boolean supports(org.pac4j.core.client.IndirectClient client, org.pac4j.core.context.WebContext webContext)Supports.- Parameters:
client- the clientwebContext- the web context- Returns:
- the boolean
-
getOrder
default int getOrder()
- Specified by:
getOrderin interfaceorg.springframework.core.Ordered
-
isAuthorized
boolean isAuthorized(org.pac4j.core.context.JEEContext webContext, org.pac4j.core.client.IndirectClient client, org.apereo.cas.authentication.principal.WebApplicationService currentService)Is client authorized for use in this context.- Parameters:
webContext- the web contextclient- the clientcurrentService- the current service- Returns:
- true/false
-
-