Interface OidcScopes
-
public interface OidcScopesThe scope values defined by the OpenID Connect Core 1.0 specification that can be used to requestclaims.The scope(s) associated to an
OAuth2AccessTokendetermine what claims (resources) will be available when they are used to access OAuth 2.0 Protected Endpoints, such as the UserInfo Endpoint.- Since:
- 5.0
- See Also:
StandardClaimNames, Requesting Claims using Scope Values
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringADDRESSTheaddressscope requests access to theaddressclaim.static java.lang.StringEMAILTheemailscope requests access to theemailandemail_verifiedclaims.static java.lang.StringOPENIDTheopenidscope is required for OpenID Connect Authentication Requests.static java.lang.StringPHONEThephonescope requests access to thephone_numberandphone_number_verifiedclaims.static java.lang.StringPROFILETheprofilescope requests access to the default profile claims, which are:name, family_name, given_name, middle_name, nickname, preferred_username, profile, picture, website, gender, birthdate, zoneinfo, locale, updated_at.
-
-
-
Field Detail
-
OPENID
static final java.lang.String OPENID
Theopenidscope is required for OpenID Connect Authentication Requests.- See Also:
- Constant Field Values
-
PROFILE
static final java.lang.String PROFILE
Theprofilescope requests access to the default profile claims, which are:name, family_name, given_name, middle_name, nickname, preferred_username, profile, picture, website, gender, birthdate, zoneinfo, locale, updated_at.- See Also:
- Constant Field Values
-
EMAIL
static final java.lang.String EMAIL
Theemailscope requests access to theemailandemail_verifiedclaims.- See Also:
- Constant Field Values
-
ADDRESS
static final java.lang.String ADDRESS
Theaddressscope requests access to theaddressclaim.- See Also:
- Constant Field Values
-
PHONE
static final java.lang.String PHONE
Thephonescope requests access to thephone_numberandphone_number_verifiedclaims.- See Also:
- Constant Field Values
-
-