|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.nimbusds.oauth2.sdk.id.Identifier
com.nimbusds.oauth2.sdk.auth.ClientAuthenticationMethod
@Immutable public final class ClientAuthenticationMethod
Client authentication method at the Token endpoint. This class is immutable.
Constants are provided for four client authentication methods:
Use the constructor to define a custom client authentication method.
Related specifications:
Field Summary | |
---|---|
static ClientAuthenticationMethod |
CLIENT_SECRET_BASIC
Clients that have received a client secret from the authorisation server authenticate with the authorisation server in accordance with section 3.2.1 of OAuth 2.0 using HTTP Basic authentication. |
static ClientAuthenticationMethod |
CLIENT_SECRET_JWT
Clients that have received a client secret from the authorisation server, create a JWT using an HMAC SHA algorithm, such as HMAC SHA-256. |
static ClientAuthenticationMethod |
CLIENT_SECRET_POST
Clients that have received a client secret from the authorisation server authenticate with the authorisation server in accordance with section 3.2.1 of OAuth 2.0 by including the client credentials in the request body. |
static ClientAuthenticationMethod |
PRIVATE_KEY_JWT
Clients that have registered a public key sign a JWT using the RSA algorithm if a RSA key was registered or the ECDSA algorithm if an Elliptic Curve key was registered (see JWA for the algorithm identifiers). |
Constructor Summary | |
---|---|
ClientAuthenticationMethod(String value)
Creates a new client authentication method with the specified value. |
Method Summary | |
---|---|
boolean |
equals(Object object)
Overrides Object.equals() . |
static ClientAuthenticationMethod |
getDefault()
Gets the default client authentication method. |
Methods inherited from class com.nimbusds.oauth2.sdk.id.Identifier |
---|
getValue, hashCode, toJSONString, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final ClientAuthenticationMethod CLIENT_SECRET_BASIC
public static final ClientAuthenticationMethod CLIENT_SECRET_POST
public static final ClientAuthenticationMethod CLIENT_SECRET_JWT
public static final ClientAuthenticationMethod PRIVATE_KEY_JWT
Constructor Detail |
---|
public ClientAuthenticationMethod(String value)
value
- The authentication method value. Must not be
null
or empty string.Method Detail |
---|
public static ClientAuthenticationMethod getDefault()
CLIENT_SECRET_BASIC
public boolean equals(Object object)
Identifier
Object.equals()
.
equals
in class Identifier
object
- The object to compare to.
true
if the objects have the same value, otherwise
false
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |