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

skinny.oauth2.client.HttpMethod.scala Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package skinny.oauth2.client

import org.apache.oltu.oauth2.common.OAuth.{ HttpMethod => OltuHttpMethod }

/**
 * HTTP method.
 */
case class HttpMethod(value: String)

object HttpMethod {

  val DELETE = HttpMethod(OltuHttpMethod.DELETE)
  val GET = HttpMethod(OltuHttpMethod.GET)
  val POST = HttpMethod(OltuHttpMethod.POST)
  val PUT = HttpMethod(OltuHttpMethod.PUT)

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy