Uses of Class
com.nimbusds.oauth2.sdk.GrantType
-
Packages that use GrantType Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing OAuth 2.0 client requests and authorisation server responses.com.nimbusds.oauth2.sdk.as OAuth 2.0 Authorisation Server (AS) classes.com.nimbusds.oauth2.sdk.client OAuth 2.0 dynamic client registration.com.nimbusds.oauth2.sdk.device OAuth 2.0 device authorisation grant classes. -
-
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. 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.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.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()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.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.
-