All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.chatwork.scala.jwk.Requirement.scala Maven / Gradle / Ivy

package com.chatwork.scala.jwk

import scala.collection.immutable

sealed abstract class Requirement(val entryName: String) extends Product with Serializable

object Requirement {
  def values: immutable.IndexedSeq[Requirement] =
    immutable.IndexedSeq(Required, Recommended, Optional)

  case object Required    extends Requirement("Required")
  case object Recommended extends Requirement("Recommended")
  case object Optional    extends Requirement("Optional")

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy