|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.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(ResponseTypeSet rts,
ClientID clientID,
URL redirectURI,
Scope scope,
State state)
Creates a new authorisation request. |
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 |
---|
Methods in com.nimbusds.openid.connect.sdk with parameters of type Scope | |
---|---|
static net.minidev.json.JSONObject |
UserInfoClaimsRequest.getClaimsObjectForScope(Scope scope)
Gets the default claims request JSON object for the specified UserInfo scope. |
Constructors in com.nimbusds.openid.connect.sdk with parameters of type Scope | |
---|---|
OIDCAuthorizationRequest(ResponseTypeSet rts,
Scope scope,
ClientID clientID,
URL redirectURI,
Nonce nonce)
Creates a new minimal OpenID Connect authorisation request. |
|
OIDCAuthorizationRequest(ResponseTypeSet rts,
Scope scope,
ClientID clientID,
URL redirectURI,
Nonce nonce,
State state,
Display display,
Prompt prompt,
com.nimbusds.jose.JOSEObject requestObj,
com.nimbusds.jwt.JWT idTokenHint,
String loginHint)
Creates a new OpenID Connect authorisation request with an OpenID request object specified by value. |
|
OIDCAuthorizationRequest(ResponseTypeSet rts,
Scope scope,
ClientID clientID,
URL redirectURI,
Nonce nonce,
State state,
Display display,
Prompt prompt,
com.nimbusds.jwt.JWT idTokenHint,
String loginHint)
Creates a new OpenID Connect authorisation request without an OpenID request object. |
|
OIDCAuthorizationRequest(ResponseTypeSet rts,
Scope scope,
ClientID clientID,
URL redirectURI,
Nonce nonce,
State state,
Display display,
Prompt prompt,
URL requestURI,
com.nimbusds.jwt.JWT idTokenHint,
String loginHint)
Creates a new OpenID Connect authorisation request with an OpenID request object specified by URI reference. |
|
UserInfoClaimsRequest(Scope scope,
net.minidev.json.JSONObject userInfoObject)
Creates a new resolved UserInfo claims request. |
Uses of Scope in com.nimbusds.openid.connect.sdk.op |
---|
Methods in com.nimbusds.openid.connect.sdk.op that return Scope | |
---|---|
Scope |
ProviderConfiguration.getScope()
Gets the supported scope values. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |