Uses of Class
com.nimbusds.oauth2.sdk.AuthorizationGrant
-
Packages that use AuthorizationGrant Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing core OAuth 2.0 concepts.com.nimbusds.oauth2.sdk.ciba OpenID Connect Client Initiated Backchannel Authentication (CIBA) Flow - Core 1.0 classes.com.nimbusds.oauth2.sdk.device OAuth 2.0 device authorisation grant classes. -
-
Uses of AuthorizationGrant in com.nimbusds.oauth2.sdk
Subclasses of AuthorizationGrant in com.nimbusds.oauth2.sdk Modifier and Type Class Description classAssertionGrantAssertion grant.classAuthorizationCodeGrantAuthorisation code grant.classClientCredentialsGrantClient credentials grant.classJWTBearerGrantJWT bearer grant.classRefreshTokenGrantRefresh token grant.classResourceOwnerPasswordCredentialsGrantResource owner password credentials grant.classSAML2BearerGrantSAML 2.0 bearer grant.Methods in com.nimbusds.oauth2.sdk that return AuthorizationGrant Modifier and Type Method Description AuthorizationGrantTokenRequest. getAuthorizationGrant()Returns the authorisation grant.static AuthorizationGrantAuthorizationGrant. parse(Map<String,List<String>> params)Parses an authorisation grant from the specified request body parameters.Constructors in com.nimbusds.oauth2.sdk with parameters of type AuthorizationGrant Constructor Description TokenRequest(URI uri, ClientAuthentication clientAuth, AuthorizationGrant authzGrant)Creates a new token request with the specified client authentication.TokenRequest(URI uri, ClientAuthentication clientAuth, AuthorizationGrant authzGrant, Scope scope)Creates a new token request with the specified client authentication.TokenRequest(URI uri, ClientAuthentication clientAuth, AuthorizationGrant authzGrant, Scope scope, List<URI> resources, Map<String,List<String>> customParams)Creates a new token request with the specified client authentication and extension and custom parameters.TokenRequest(URI uri, AuthorizationGrant authzGrant)Creates a new token request, without client authentication and a specified client identifier.TokenRequest(URI uri, AuthorizationGrant authzGrant, Scope scope)Creates a new token request, without client authentication and a specified client identifier.TokenRequest(URI uri, ClientID clientID, AuthorizationGrant authzGrant)Creates a new token request, with no explicit client authentication (may be present in the grant depending on its type).TokenRequest(URI uri, ClientID clientID, AuthorizationGrant authzGrant, Scope scope)Creates a new token request, with no explicit client authentication (may be present in the grant depending on its type).TokenRequest(URI uri, ClientID clientID, AuthorizationGrant authzGrant, Scope scope, List<URI> resources, RefreshToken existingGrant, Map<String,List<String>> customParams)Creates a new token request, with no explicit client authentication (may be present in the grant depending on its type) and extension and custom parameters. -
Uses of AuthorizationGrant in com.nimbusds.oauth2.sdk.ciba
Subclasses of AuthorizationGrant in com.nimbusds.oauth2.sdk.ciba Modifier and Type Class Description classCIBAGrantCIBA grant. -
Uses of AuthorizationGrant in com.nimbusds.oauth2.sdk.device
Subclasses of AuthorizationGrant in com.nimbusds.oauth2.sdk.device Modifier and Type Class Description classDeviceCodeGrantDevice code grant for the OAuth 2.0 Device Authorization Grant.
-