Uses of Class
com.pingidentity.sdk.oauth20.Scope
-
Packages that use Scope Package Description com.pingidentity.sdk.accessgrant Provides the ability to create a custom Access Grant storage mechanism.com.pingidentity.sdk.authorizationdetails Provides the ability to create an authorization detail processor to process custom authorization detail types.com.pingidentity.sdk.oauth20 A plugin interface, with associated classes, for issuing and validating access tokens. -
-
Uses of Scope in com.pingidentity.sdk.accessgrant
Methods in com.pingidentity.sdk.accessgrant that return Scope Modifier and Type Method Description ScopeAccessGrant. getScope()Get the scope.ScopeAccessGrantCriteria. getScope()Get the scope to retrieve access grants for.Methods in com.pingidentity.sdk.accessgrant with parameters of type Scope Modifier and Type Method Description AccessGrantAccessGrantManager. getByUserKeyScopeClientIdGrantTypeContext(String userKey, Scope scope, String clientId, String grantType, String contextQualifier)Retrieves an access grant based on several specific criteria specified in the params.voidAccessGrant. setScope(Scope scope)Set the scope.voidAccessGrantCriteria. setScope(Scope scope)Set the scope to retrieve access grants for.Constructors in com.pingidentity.sdk.accessgrant with parameters of type Scope Constructor Description AccessGrant(String uniqueUserId, Scope scope, String clientId, String grantType, String ctxQual)AccessGrant constructor.AccessGrant(String rawValue, String uniqueUserId, Scope scope, String clientId, String grantType, String ctxQual)AccessGrant constructor.AccessGrant(String hashedRefreshTokenValue, String guid, String uniqueUserId, String grantType, Scope scope, String clientId, long issued, long updated, Long expires, String ctxQual)AccessGrant constructor.AccessGrantCriteria(String userKey, Scope scope, String clientId, String grantType, String contextQualifier, AuthorizationDetails authorizationDetails)Access Grant Criteria constructor -
Uses of Scope in com.pingidentity.sdk.authorizationdetails
Constructors in com.pingidentity.sdk.authorizationdetails with parameters of type Scope Constructor Description AuthorizationDetailContext(javax.servlet.http.HttpServletRequest request, String clientId, Scope scope)The constructor for the authorization details contextual information. -
Uses of Scope in com.pingidentity.sdk.oauth20
Methods in com.pingidentity.sdk.oauth20 that return Scope Modifier and Type Method Description ScopeScope. expanded()Expands all group mappings by iterating the scopes.static ScopeScope. getScope(String scopeStr)Obtain a Scope representing the specified space delimited scope string.Methods in com.pingidentity.sdk.oauth20 with parameters of type Scope Modifier and Type Method Description booleanScope. hasAllScopes(Scope scope)A Scope object contains a set of scopes.booleanScope. isEqualOrLesserThan(Scope scope)Determines if the scope object contains the same scopes, or less, than the one passed in.default IssuedAccessTokenBearerAccessTokenManagementPlugin. issueAccessToken(Map<String,AttributeValue> attributes, Scope scope, String clientId, String accessGrantGuid)Issues anIssuedAccessTokenbased on the specified parameters.default IssuedAccessTokenBearerAccessTokenManagementPlugin. issueAccessToken(Map<String,AttributeValue> attributes, Scope scope, String clientId, String accessGrantGuid, int tokenManagerSequenceNumber)Issues anIssuedAccessTokenbased on the specified parameters.default IssuedAccessTokenBearerAccessTokenManagementPlugin. issueAccessToken(Map<String,AttributeValue> attributes, Scope scope, String clientId, String accessGrantGuid, int tokenManagerSequenceNumber, AuthorizationDetails authorizationDetails)Issues anIssuedAccessTokenbased on the specified parameters.Set<String>Scope. scopesNotIn(Scope scope)Returns the difference between the current scope and the scope passed in.
-