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

com.ocadotechnology.sttp.oauth2.ScopeSelection.scala Maven / Gradle / Ivy

package org.polyvariant.sttp.oauth2

import org.polyvariant.sttp.oauth2.common.Scope

sealed trait ScopeSelection extends Product with Serializable {

  def toRequestMap: Map[String, String] = this match {
    case ScopeSelection.KeepExisting         => Map.empty
    case ScopeSelection.OverrideWith(scopes) => Map("scopes" -> scopes.mkString(" "))
  }

}

object ScopeSelection {
  case object KeepExisting extends ScopeSelection
  final case class OverrideWith(scopes: Set[Scope]) extends ScopeSelection
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy