trait JwtJsonCommon[J, H, C] extends JwtCore[H, C]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JwtJsonCommon
- JwtCore
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def extractAlgorithm(header: H): Option[JwtAlgorithm]
- Attributes
- protected
- Definition Classes
- JwtCore
- abstract def extractExpiration(claim: C): Option[Long]
- Attributes
- protected
- Definition Classes
- JwtCore
- abstract def extractNotBefore(claim: C): Option[Long]
- Attributes
- protected
- Definition Classes
- JwtCore
- abstract def getAlgorithm(header: J): Option[JwtAlgorithm]
- Attributes
- protected
- abstract def parse(value: String): J
- Attributes
- protected
- abstract def parseClaim(claim: String): C
- Attributes
- protected
- Definition Classes
- JwtCore
- abstract def parseHeader(header: String): H
- Attributes
- protected
- Definition Classes
- JwtCore
- abstract def stringify(value: J): String
- Attributes
- protected
Concrete 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()
- def decode(token: String, key: PublicKey): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: PublicKey, options: JwtOptions): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm]): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: SecretKey): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: SecretKey, options: JwtOptions): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm]): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm]): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm]): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String): Try[C]
- Definition Classes
- JwtCore
- def decode(token: String, options: JwtOptions): Try[C]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: PublicKey): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: PublicKey, options: JwtOptions): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm]): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: SecretKey): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: SecretKey, options: JwtOptions): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm]): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm]): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm]): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeAll(token: String, options: JwtOptions): Try[(H, C, String)]
- Definition Classes
- JwtCore
- def decodeJson(token: String, key: PublicKey): Try[J]
- def decodeJson(token: String, key: PublicKey, options: JwtOptions): Try[J]
- def decodeJson(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm]): Try[J]
- def decodeJson(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[J]
- def decodeJson(token: String, key: SecretKey): Try[J]
- def decodeJson(token: String, key: SecretKey, options: JwtOptions): Try[J]
- def decodeJson(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm]): Try[J]
- def decodeJson(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[J]
- def decodeJson(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm]): Try[J]
- def decodeJson(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[J]
- def decodeJson(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm]): Try[J]
- def decodeJson(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[J]
- def decodeJson(token: String): Try[J]
- def decodeJson(token: String, options: JwtOptions): Try[J]
- def decodeJsonAll(token: String, key: PublicKey): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: PublicKey, options: JwtOptions): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm]): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: SecretKey): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: SecretKey, options: JwtOptions): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm]): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm]): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm]): Try[(J, J, String)]
- def decodeJsonAll(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[(J, J, String)]
- def decodeJsonAll(token: String): Try[(J, J, String)]
- def decodeJsonAll(token: String, options: JwtOptions): Try[(J, J, String)]
- def decodeRaw(token: String, key: PublicKey): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: PublicKey, options: JwtOptions): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm]): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: SecretKey): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: SecretKey, options: JwtOptions): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm]): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm]): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm]): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String): Try[String]
- Definition Classes
- JwtCore
- def decodeRaw(token: String, options: JwtOptions): Try[String]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: PublicKey): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: PublicKey, options: JwtOptions): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm]): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: SecretKey): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: SecretKey, options: JwtOptions): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm]): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm]): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm]): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def decodeRawAll(token: String, options: JwtOptions): Try[(String, String, String)]
- Definition Classes
- JwtCore
- def encode(claim: J, key: PrivateKey, algorithm: JwtAsymmetricAlgorithm): String
- def encode(claim: J, key: SecretKey, algorithm: JwtHmacAlgorithm): String
- def encode(claim: J, key: String, algorithm: JwtAlgorithm): String
- def encode(claim: J): String
- def encode(header: J, claim: J, key: Key): String
- def encode(header: J, claim: J, key: String): String
- def encode(header: J, claim: J): String
- def encode(header: JwtHeader, claim: JwtClaim, key: Key): String
- Definition Classes
- JwtCore
- def encode(header: JwtHeader, claim: JwtClaim, key: String): String
- Definition Classes
- JwtCore
- def encode(header: JwtHeader, claim: JwtClaim): String
- Definition Classes
- JwtCore
- def encode(claim: JwtClaim, key: PrivateKey, algorithm: JwtAsymmetricAlgorithm): String
- Definition Classes
- JwtCore
- def encode(claim: JwtClaim, key: SecretKey, algorithm: JwtHmacAlgorithm): String
- Definition Classes
- JwtCore
- def encode(claim: JwtClaim, key: String, algorithm: JwtAlgorithm): String
- Definition Classes
- JwtCore
- def encode(claim: JwtClaim): String
- Definition Classes
- JwtCore
- def encode(claim: String, key: PrivateKey, algorithm: JwtAsymmetricAlgorithm): String
- Definition Classes
- JwtCore
- def encode(claim: String, key: SecretKey, algorithm: JwtHmacAlgorithm): String
- Definition Classes
- JwtCore
- def encode(claim: String, key: String, algorithm: JwtAlgorithm): String
- Definition Classes
- JwtCore
- def encode(claim: String): String
- Definition Classes
- JwtCore
- def encode(header: String, claim: String, key: PrivateKey, algorithm: JwtAsymmetricAlgorithm): String
- Definition Classes
- JwtCore
- def encode(header: String, claim: String, key: SecretKey, algorithm: JwtHmacAlgorithm): String
- Definition Classes
- JwtCore
- def encode(header: String, claim: String, key: String, algorithm: JwtAlgorithm): String
- Definition Classes
- JwtCore
- def encode(header: String, claim: String): String
- Definition Classes
- JwtCore
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def extractAlgorithm(header: JwtHeader): Option[JwtAlgorithm]
- Attributes
- protected
- def extractExpiration(claim: JwtClaim): Option[Long]
- Attributes
- protected
- def extractNotBefore(claim: JwtClaim): Option[Long]
- Attributes
- protected
- 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 isValid(token: String, key: PublicKey): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: PublicKey, options: JwtOptions): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm]): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: SecretKey): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: SecretKey, options: JwtOptions): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm]): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm]): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm]): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String): Boolean
- Definition Classes
- JwtCore
- def isValid(token: String, options: JwtOptions): Boolean
- Definition Classes
- JwtCore
- 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 validate(token: String, key: PublicKey): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: PublicKey, options: JwtOptions): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm]): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: SecretKey): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: SecretKey, options: JwtOptions): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm]): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm]): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm]): Unit
- Definition Classes
- JwtCore
- def validate(token: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Unit
- Definition Classes
- JwtCore
- def validate(token: String): Unit
- Definition Classes
- JwtCore
- def validate(token: String, options: JwtOptions): Unit
- Definition Classes
- JwtCore
- def validate(header64: String, header: H, claim64: String, claim: C, signature: String, key: PublicKey, algorithms: Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Unit
- Attributes
- protected
- Definition Classes
- JwtCore
- def validate(header64: String, header: H, claim64: String, claim: C, signature: String, key: SecretKey, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Unit
- Attributes
- protected
- Definition Classes
- JwtCore
- def validate(header64: String, header: H, claim64: String, claim: C, signature: String, key: String, algorithms: => Seq[JwtAsymmetricAlgorithm], options: JwtOptions): Unit
- Attributes
- protected
- Definition Classes
- JwtCore
- def validate(header64: String, header: H, claim64: String, claim: C, signature: String, key: String, algorithms: Seq[JwtHmacAlgorithm], options: JwtOptions): Unit
- Attributes
- protected
- Definition Classes
- JwtCore
- def validate(header64: String, header: H, claim64: String, claim: C, signature: String, options: JwtOptions, verify: (Array[Byte], Array[Byte], JwtAlgorithm) => Boolean): Unit
- Attributes
- protected
- Definition Classes
- JwtCore
- def validate(header: H, claim: C, signature: String, options: JwtOptions): Unit
- Attributes
- protected
- Definition Classes
- JwtCore
- def validateAsymmetricAlgorithm(algorithm: JwtAsymmetricAlgorithm, algorithms: Seq[JwtAsymmetricAlgorithm]): Boolean
- Attributes
- protected
- Definition Classes
- JwtCore
- def validateHmacAlgorithm(algorithm: JwtHmacAlgorithm, algorithms: Seq[JwtHmacAlgorithm]): Boolean
- Attributes
- protected
- Definition Classes
- JwtCore
- def validateTiming(claim: C, options: JwtOptions): Unit
- Attributes
- protected
- Definition Classes
- JwtCore
- 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])