JwtConfig

@Serializable
data class JwtConfig(val issuer: String = "https://api.example.com", val realm: String = "example.com", val privateKeyFile: String = "privateKey.pem", val keyId: @Serializable(with = UUIDSerializer::class) UUID = UUID.randomUUID())

JWT/OIDC設定

Constructors

Link copied to clipboard
constructor(issuer: String = "https://api.example.com", realm: String = "example.com", privateKeyFile: String = "privateKey.pem", keyId: @Serializable(with = UUIDSerializer::class) UUID = UUID.randomUUID())

Properties

Link copied to clipboard
Link copied to clipboard
val keyId: @Serializable(with = UUIDSerializer::class) UUID
Link copied to clipboard
Link copied to clipboard