
org.http4s.TransferCoding.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4s-core_2.10 Show documentation
Show all versions of http4s-core_2.10 Show documentation
Core http4s library for servers and clients
/*
* Derived from https://github.com/spray/spray/blob/v1.1-M7/spray-http/src/main/scala/spray/http/HttpEncoding.scala
*
* Copyright (C) 2011-2012 spray.io
* Based on code copyright (C) 2010-2011 by the BlueEyes Web Framework Team (http://github.com/jdegoes/blueeyes)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.http4s
import org.http4s.util._
import org.http4s.util.string._
final case class TransferCoding private (coding: CaseInsensitiveString) extends Renderable {
override def render(writer: Writer): writer.type = writer.append(coding.toString)
}
object TransferCoding extends Registry {
type Key = CaseInsensitiveString
type Value = TransferCoding
implicit def fromKey(k: CaseInsensitiveString): TransferCoding = new TransferCoding(k)
// http://www.iana.org/assignments/http-parameters/http-parameters.xml#http-parameters-2
val chunked = registerKey("chunked".ci)
val compress = registerKey("compress".ci)
val deflate = registerKey("deflate".ci)
val gzip = registerKey("gzip".ci)
val identity = registerKey("identity".ci)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy