final class JwtManager extends AnyRef
- Source
- JwtManager.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JwtManager
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new JwtManager(config: JwtManagerConfig)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def issueJwt[H, P](claims: ClaimsHP[H, P])(implicit headerClaimsEncoder: ClaimsEncoder[H], payloadClaimsEncoder: ClaimsEncoder[P]): Either[JwtIssueError, Jwt[ClaimsHP[H, P]]]
- def issueJwt[P](claims: ClaimsP[P])(implicit claimsEncoder: ClaimsEncoder[P]): Either[JwtIssueError, Jwt[ClaimsP[P]]]
- def issueJwt[H](claims: ClaimsH[H])(implicit claimsEncoder: ClaimsEncoder[H]): Either[JwtIssueError, Jwt[ClaimsH[H]]]
- def issueJwt(claims: Claims = JwtClaims.Claims()): Either[JwtIssueError, Jwt[Claims]]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def verifyJwt[H, P](jwt: TokenHP)(implicit headerDecoder: ClaimsDecoder[H], payloadDecoder: ClaimsDecoder[P]): Either[JwtVerifyError, ClaimsHP[H, P]]
- def verifyJwt[P](jwt: TokenP)(implicit claimsDecoder: ClaimsDecoder[P]): Either[JwtVerifyError, ClaimsP[P]]
- def verifyJwt[H](jwt: TokenH)(implicit claimsDecoder: ClaimsDecoder[H]): Either[JwtVerifyError, ClaimsH[H]]
- def verifyJwt(jwt: Token): Either[JwtVerifyError, Claims]
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])