Uses of Class
com.nimbusds.oauth2.sdk.GrantType
-
Packages that use GrantType Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing core OAuth 2.0 concepts.com.nimbusds.oauth2.sdk.as OAuth 2.0 Authorisation Server (AS) classes.com.nimbusds.oauth2.sdk.ciba OpenID Connect Client Initiated Backchannel Authentication (CIBA) Flow - Core 1.0 classes.com.nimbusds.oauth2.sdk.client OAuth 2.0 dynamic client registration.com.nimbusds.oauth2.sdk.device OAuth 2.0 device authorisation grant classes.com.nimbusds.oauth2.sdk.tokenexchange OAuth 2.0 token exchange. -
-
Uses of GrantType in com.nimbusds.oauth2.sdk
Fields in com.nimbusds.oauth2.sdk declared as GrantType Modifier and Type Field Description static GrantTypeGrantType. AUTHORIZATION_CODEAuthorisation code.static GrantTypeGrantType. CIBAClient Initiated Back-channel Authentication (CIBA), as defined in OpenID Connect Client Initiated Backchannel Authentication Flow - Core 1.0.static GrantTypeGrantType. CLIENT_CREDENTIALSClient credentials.static GrantTypeGrantType. DEVICE_CODEDevice Code, as defined in OAuth 2.0 Device Flow for Browserless and Input Constrained Devices.static GrantTypeAuthorizationCodeGrant. GRANT_TYPEThe grant type.static GrantTypeClientCredentialsGrant. GRANT_TYPEThe grant type.static GrantTypeJWTBearerGrant. GRANT_TYPEThe grant type.static GrantTypeRefreshTokenGrant. GRANT_TYPEThe grant type.static GrantTypeResourceOwnerPasswordCredentialsGrant. GRANT_TYPEThe grant type.static GrantTypeSAML2BearerGrant. GRANT_TYPEThe grant type.static GrantTypeGrantType. IMPLICITImplicit.static GrantTypeGrantType. JWT_BEARERJWT bearer, as defined in RFC 7523.static GrantTypeGrantType. PASSWORDPassword.static GrantTypeGrantType. REFRESH_TOKENRefresh token.static GrantTypeGrantType. SAML2_BEARERSAML 2.0 bearer, as defined in RFC 7522.static GrantTypeGrantType. TOKEN_EXCHANGEToken Exchange, as defined in RFC 8693.Methods in com.nimbusds.oauth2.sdk that return GrantType Modifier and Type Method Description GrantTypeAuthorizationGrant. getType()Gets the authorisation grant type.static GrantTypeGrantType. parse(String value)Parses a grant type from the specified string.Methods in com.nimbusds.oauth2.sdk with parameters of type GrantType Modifier and Type Method Description static voidGrantType. ensure(GrantType grantType, Map<String,List<String>> params)Ensures the specified grant type is set in a list of parameters.Constructors in com.nimbusds.oauth2.sdk with parameters of type GrantType Constructor Description AssertionGrant(GrantType type)Creates a new assertion-based authorisation grant.AuthorizationGrant(GrantType type)Creates a new authorisation grant. -
Uses of GrantType in com.nimbusds.oauth2.sdk.as
Methods in com.nimbusds.oauth2.sdk.as that return types with arguments of type GrantType Modifier and Type Method Description List<GrantType>AuthorizationServerMetadata. getGrantTypes()List<GrantType>ReadOnlyAuthorizationServerMetadata. getGrantTypes()Gets the supported OAuth 2.0 grant types.Method parameters in com.nimbusds.oauth2.sdk.as with type arguments of type GrantType Modifier and Type Method Description voidAuthorizationServerMetadata. setGrantTypes(List<GrantType> gts)Sets the supported OAuth 2.0 grant types. -
Uses of GrantType in com.nimbusds.oauth2.sdk.ciba
Fields in com.nimbusds.oauth2.sdk.ciba declared as GrantType Modifier and Type Field Description static GrantTypeCIBAGrant. GRANT_TYPEThe grant type. -
Uses of GrantType in com.nimbusds.oauth2.sdk.client
Methods in com.nimbusds.oauth2.sdk.client that return types with arguments of type GrantType Modifier and Type Method Description Set<GrantType>ClientMetadata. getGrantTypes()Gets the expected OAuth 2.0 grant types.Method parameters in com.nimbusds.oauth2.sdk.client with type arguments of type GrantType Modifier and Type Method Description voidClientMetadata. setGrantTypes(Set<GrantType> grantTypes)Sets the expected OAuth 2.0 grant types. -
Uses of GrantType in com.nimbusds.oauth2.sdk.device
Fields in com.nimbusds.oauth2.sdk.device declared as GrantType Modifier and Type Field Description static GrantTypeDeviceCodeGrant. GRANT_TYPEThe grant type. -
Uses of GrantType in com.nimbusds.oauth2.sdk.tokenexchange
Fields in com.nimbusds.oauth2.sdk.tokenexchange declared as GrantType Modifier and Type Field Description static GrantTypeTokenExchangeGrant. GRANT_TYPEThe grant type.
-