Uses of Class
com.nimbusds.oauth2.sdk.Scope

Packages that use Scope
com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing OAuth 2.0 client requests and server responses. 
com.nimbusds.oauth2.sdk.reg OAuth 2.0 dynamic client registration. 
com.nimbusds.oauth2.sdk.token OAuth 2.0 access and refresh token implementations. 
com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing OpenID Connect client requests and server responses. 
com.nimbusds.openid.connect.sdk.op OpenID Connect Provider (OP) classes. 
 

Uses of Scope in com.nimbusds.oauth2.sdk
 

Methods in com.nimbusds.oauth2.sdk that return Scope
 Scope AuthorizationRequest.getScope()
          Gets the scope.
 Scope AccessTokenRequest.getScope()
          Gets the access scope.
static Scope Scope.parse(String s)
          Parses a scope from the specified string representation.
 

Constructors in com.nimbusds.oauth2.sdk with parameters of type Scope
AccessTokenRequest(Scope scope, ClientAuthentication clientAuth)
          Creates a new authenticated access token request, using a client credentials grant.
AccessTokenRequest(String username, String password, Scope scope)
          Creates a new authenticated access token request, using a resource owner password credentials grant.
AuthorizationRequest(ResponseType rt, ClientID clientID, URL redirectURI, Scope scope, State state)
          Creates a new authorisation request.
 

Uses of Scope in com.nimbusds.oauth2.sdk.reg
 

Methods in com.nimbusds.oauth2.sdk.reg that return Scope
 Scope ClientMetadata.getScope()
          Gets the scope values that the client can use when requesting access tokens.
 

Methods in com.nimbusds.oauth2.sdk.reg with parameters of type Scope
 void ClientMetadata.setScope(Scope scope)
          Sets the scope values that the client can use when requesting access tokens.
 

Uses of Scope in com.nimbusds.oauth2.sdk.token
 

Methods in com.nimbusds.oauth2.sdk.token that return Scope
 Scope BearerTokenError.getScope()
          Gets the required scope.
 Scope AccessToken.getScope()
          Gets the scope of this access token.
 

Methods in com.nimbusds.oauth2.sdk.token with parameters of type Scope
 BearerTokenError BearerTokenError.setScope(Scope scope)
          Sets the required scope.
 

Constructors in com.nimbusds.oauth2.sdk.token with parameters of type Scope
AccessToken(AccessTokenType type, int length, long lifetime, Scope scope)
          Creates a new access token with a randomly generated value of the specified length and optional lifetime and scope.
AccessToken(AccessTokenType type, long lifetime, Scope scope)
          Creates a new access token with a randomly generated value and the specified optional lifetime and scope.
AccessToken(AccessTokenType type, String value, long lifetime, Scope scope)
          Creates a new access token with the specified value and optional lifetime and scope.
BearerAccessToken(int length, long lifetime, Scope scope)
          Creates a new bearer access token with a randomly generated value of the specified length and optional lifetime and scope.
BearerAccessToken(long lifetime, Scope scope)
          Creates a new bearer access token with a randomly generated value and the specified optional lifetime and scope.
BearerAccessToken(String value, long lifetime, Scope scope)
          Creates a new bearer access token with the specified value and optional lifetime and scope.
BearerTokenError(String code, String description, int httpStatusCode, URL uri, String realm, Scope scope)
          Creates a new OAuth 2.0 bearer token error with the specified code, description, HTTP status code, page URI, realm and scope.
 

Uses of Scope in com.nimbusds.openid.connect.sdk
 

Constructors in com.nimbusds.openid.connect.sdk with parameters of type Scope
OIDCAuthorizationRequest(ResponseType rt, Scope scope, ClientID clientID, URL redirectURI, State state, Nonce nonce)
          Creates a new minimal OpenID Connect authorisation request.
OIDCAuthorizationRequest(ResponseType rt, Scope scope, ClientID clientID, URL redirectURI, State state, Nonce nonce, Display display, Prompt prompt, int maxAge, List<com.nimbusds.langtag.LangTag> uiLocales, List<com.nimbusds.langtag.LangTag> claimsLocales, com.nimbusds.jwt.JWT idTokenHint, String loginHint, List<ACR> acrValues, ClaimsRequest claims)
          Creates a new OpenID Connect authorisation request without a request object.
OIDCAuthorizationRequest(ResponseType rt, Scope scope, ClientID clientID, URL redirectURI, State state, Nonce nonce, Display display, Prompt prompt, int maxAge, List<com.nimbusds.langtag.LangTag> uiLocales, List<com.nimbusds.langtag.LangTag> claimsLocales, com.nimbusds.jwt.JWT idTokenHint, String loginHint, List<ACR> acrValues, ClaimsRequest claims, com.nimbusds.jwt.JWT requestObject)
          Creates a new OpenID Connect authorisation request with a request object specified by value.
OIDCAuthorizationRequest(ResponseType rt, Scope scope, ClientID clientID, URL redirectURI, State state, Nonce nonce, Display display, Prompt prompt, int maxAge, List<com.nimbusds.langtag.LangTag> uiLocales, List<com.nimbusds.langtag.LangTag> claimsLocales, com.nimbusds.jwt.JWT idTokenHint, String loginHint, List<ACR> acrValues, ClaimsRequest claims, URL requestURI)
          Creates a new OpenID Connect authorisation request with a request object specified by URL.
 

Uses of Scope in com.nimbusds.openid.connect.sdk.op
 

Methods in com.nimbusds.openid.connect.sdk.op that return Scope
 Scope OIDCProviderMetadata.getScopes()
          Gets the supported scope values.
 



Copyright © 2013 NimbusDS. All Rights Reserved.