Packages

p

tsec

jwt

package jwt

Source
package.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. jwt
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait JWTAudience extends AnyRef
  2. sealed abstract case class JWTClaims extends Product with Serializable

    Represents the JWT Claims in https://tools.ietf.org/html/rfc7519#section-4

    Represents the JWT Claims in https://tools.ietf.org/html/rfc7519#section-4

    Times are IEEE Std 1003.1, 2013 Edition time in seconds. They are represented in a java.time.Instant objects. At serialization time, they are represented as Long.

    Note: When feeding Instant instances directly, milliseconds are discarded

  3. case class JWTListAudience(values: List[String]) extends JWTAudience with Product with Serializable
  4. case class JWTSingleAudience(value: String) extends JWTAudience with Product with Serializable

Value Members

  1. val JWTPrinter: Printer
  2. implicit val audienceDecoder: Decoder[JWTAudience]
  3. implicit val audienceEncoder: Encoder[JWTAudience]
  4. object JWTClaims extends JWSSerializer[JWTClaims] with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped