Class CasOAuthWrapperProfileDefinition
java.lang.Object
org.pac4j.core.profile.definition.ProfileDefinition
org.pac4j.core.profile.definition.CommonProfileDefinition
org.pac4j.oauth.profile.definition.OAuthProfileDefinition
org.pac4j.oauth.profile.casoauthwrapper.CasOAuthWrapperProfileDefinition
CasOAuthWrapperProfile profile definition.- Since:
- 1.9.2
- Author:
- Jerome Leleu
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringConstantAUTHENTICATION_DATE="authenticationDate"static final StringConstantAUTHENTICATION_METHOD="authenticationMethod"static final StringConstantIS_FROM_NEW_LOGIN="isFromNewLogin"static final StringConstantLONG_TERM_AUTHENTICATION_REQUEST_TOKEN_USED="longTermAuthenticationRequestTokenUsed"static final StringConstantSUCCESSFUL_AUTHENTICATION_HANDLERS="successfulAuthenticationHandlers"Fields inherited from class org.pac4j.core.profile.definition.CommonProfileDefinition
DISPLAY_NAME, EMAIL, FAMILY_NAME, FIRST_NAME, GENDER, LOCALE, LOCATION, PICTURE_URL, PROFILE_URLFields inherited from class org.pac4j.core.profile.definition.ProfileDefinition
logger -
Constructor Summary
ConstructorsConstructorDescriptionConstructor for CasOAuthWrapperProfileDefinition. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidextractAttributes(com.fasterxml.jackson.databind.JsonNode json, CasOAuthWrapperProfile profile) extractUserProfile(String body) Extract the user profile from the response (JSON, XML...) of the profile url.getProfileUrl(com.github.scribejava.core.model.Token accessToken, OAuthConfiguration configuration) Retrieve the url of the profile of the authenticated user for the provider.Methods inherited from class org.pac4j.oauth.profile.definition.OAuthProfileDefinition
getProfileVerb, raiseProfileExtractionError, raiseProfileExtractionJsonError, raiseProfileExtractionJsonErrorMethods inherited from class org.pac4j.core.profile.definition.CommonProfileDefinition
configurePrimaryAttributesMethods inherited from class org.pac4j.core.profile.definition.ProfileDefinition
convertAndAdd, convertAndAdd, getConverters, getLogger, getParameter, getPrimaryAttributes, getProfileFactory, getProfileId, getSecondaryAttributes, isRestoreProfileFromTypedId, newProfile, primary, secondary, setProfileFactory, setProfileId, setRestoreProfileFromTypedId
-
Field Details
-
IS_FROM_NEW_LOGIN
ConstantIS_FROM_NEW_LOGIN="isFromNewLogin"- See Also:
-
AUTHENTICATION_DATE
ConstantAUTHENTICATION_DATE="authenticationDate"- See Also:
-
AUTHENTICATION_METHOD
ConstantAUTHENTICATION_METHOD="authenticationMethod"- See Also:
-
SUCCESSFUL_AUTHENTICATION_HANDLERS
ConstantSUCCESSFUL_AUTHENTICATION_HANDLERS="successfulAuthenticationHandlers"- See Also:
-
LONG_TERM_AUTHENTICATION_REQUEST_TOKEN_USED
ConstantLONG_TERM_AUTHENTICATION_REQUEST_TOKEN_USED="longTermAuthenticationRequestTokenUsed"- See Also:
-
-
Constructor Details
-
CasOAuthWrapperProfileDefinition
public CasOAuthWrapperProfileDefinition()Constructor for CasOAuthWrapperProfileDefinition.
-
-
Method Details
-
getProfileUrl
public String getProfileUrl(com.github.scribejava.core.model.Token accessToken, OAuthConfiguration configuration) Retrieve the url of the profile of the authenticated user for the provider.- Specified by:
getProfileUrlin classOAuthProfileDefinition- Parameters:
accessToken- only used when constructing dynamic urls from data in the tokenconfiguration- the current configuration- Returns:
- the url of the user profile given by the provider
-
extractUserProfile
Extract the user profile from the response (JSON, XML...) of the profile url.- Specified by:
extractUserProfilein classOAuthProfileDefinition- Parameters:
body- the response body- Returns:
- the returned profile
-
extractAttributes
protected void extractAttributes(com.fasterxml.jackson.databind.JsonNode json, CasOAuthWrapperProfile profile)
-