Package com.nimbusds.oauth2.sdk.ciba
Class LoginHintToken
java.lang.Object
com.nimbusds.oauth2.sdk.id.Identifier
com.nimbusds.oauth2.sdk.ciba.LoginHintToken
- All Implemented Interfaces:
Serializable
,Comparable<Identifier>
,net.minidev.json.JSONAware
Login hint token.
Related specifications:
- OpenID Connect CIBA Flow - Core 1.0.
- See Also:
-
Field Summary
Fields inherited from class com.nimbusds.oauth2.sdk.id.Identifier
DEFAULT_BYTE_LENGTH, secureRandom
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new login hint token with a randomly generated 256-bit (32-byte) value, Base64URL-encoded.LoginHintToken
(String value) Creates a new login hint token with the specified value. -
Method Summary
Methods inherited from class com.nimbusds.oauth2.sdk.id.Identifier
compareTo, getValue, hashCode, toJSONString, toString, toStringList
-
Constructor Details
-
LoginHintToken
Creates a new login hint token with the specified value.- Parameters:
value
- The value. Must not benull
or empty string.
-
LoginHintToken
public LoginHintToken()Creates a new login hint token with a randomly generated 256-bit (32-byte) value, Base64URL-encoded.
-
-
Method Details
-
equals
- Overrides:
equals
in classIdentifier
-