case class JWTConfiguration(signatureAlgorithm: String = "HS256", expiresAfter: Option[FiniteDuration] = None, clockSkew: FiniteDuration = 30.seconds, dataClaim: String = "data") extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- JWTConfiguration
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new JWTConfiguration(signatureAlgorithm: String = "HS256", expiresAfter: Option[FiniteDuration] = None, clockSkew: FiniteDuration = 30.seconds, dataClaim: String = "data")
- signatureAlgorithm
The signature algorithm used to sign the JWT
- expiresAfter
The period of time after which the JWT expires, if any.
- clockSkew
The amount of clock skew to permit for expiration / not before checks
- dataClaim
The claim key corresponding to the data map passed in by the user
The JSON Web Token configuration
The signature algorithm used to sign the JWT
The period of time after which the JWT expires, if any.
The amount of clock skew to permit for expiration / not before checks
The claim key corresponding to the data map passed in by the user