Class OAuth20CredentialsExtractor
- java.lang.Object
-
- org.pac4j.oauth.credentials.extractor.OAuth20CredentialsExtractor
-
- All Implemented Interfaces:
org.pac4j.core.credentials.extractor.CredentialsExtractor
public class OAuth20CredentialsExtractor extends java.lang.ObjectOAuth 2.0 credentials extractor.- Since:
- 2.0.0
- Author:
- Jerome Leleu
-
-
Field Summary
Fields Modifier and Type Field Description protected org.pac4j.core.client.IndirectClientclientprotected OAuthConfigurationconfigurationprotected org.slf4j.Loggerlogger
-
Constructor Summary
Constructors Constructor Description OAuth20CredentialsExtractor(OAuth20Configuration configuration, org.pac4j.core.client.IndirectClient client)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<org.pac4j.core.credentials.Credentials>extract(org.pac4j.core.context.WebContext context, org.pac4j.core.context.session.SessionStore sessionStore)protected java.util.Optional<org.pac4j.core.credentials.Credentials>getOAuthCredentials(org.pac4j.core.context.WebContext context, org.pac4j.core.context.session.SessionStore sessionStore)Get the OAuth credentials from the web context.
-
-
-
Field Detail
-
logger
protected final org.slf4j.Logger logger
-
configuration
protected OAuthConfiguration configuration
-
client
protected org.pac4j.core.client.IndirectClient client
-
-
Constructor Detail
-
OAuth20CredentialsExtractor
public OAuth20CredentialsExtractor(OAuth20Configuration configuration, org.pac4j.core.client.IndirectClient client)
-
-
Method Detail
-
getOAuthCredentials
protected java.util.Optional<org.pac4j.core.credentials.Credentials> getOAuthCredentials(org.pac4j.core.context.WebContext context, org.pac4j.core.context.session.SessionStore sessionStore)Get the OAuth credentials from the web context.- Parameters:
context- the web contextsessionStore- the session store- Returns:
- the OAuth credentials
-
extract
public java.util.Optional<org.pac4j.core.credentials.Credentials> extract(org.pac4j.core.context.WebContext context, org.pac4j.core.context.session.SessionStore sessionStore)- Specified by:
extractin interfaceorg.pac4j.core.credentials.extractor.CredentialsExtractor
-
-