Package akka.http.javadsl.model.headers
Class ContentDisposition
- java.lang.Object
-
- akka.http.javadsl.model.HttpHeader
-
- akka.http.scaladsl.model.HttpHeader
-
- akka.http.javadsl.model.headers.ContentDisposition
-
- All Implemented Interfaces:
Renderable
,ToStringRenderable
- Direct Known Subclasses:
Content$minusDisposition
public abstract class ContentDisposition extends HttpHeader
Model for the `Content-Disposition` header. Specification: http://tools.ietf.org/html/rfc6266
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class akka.http.scaladsl.model.HttpHeader
HttpHeader.ParsingResult, HttpHeader.ParsingResult$
-
-
Constructor Summary
Constructors Constructor Description ContentDisposition()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ContentDisposition
create(ContentDispositionType dispositionType, java.util.Map<java.lang.String,java.lang.String> params)
abstract ContentDispositionType
dispositionType()
abstract java.util.Map<java.lang.String,java.lang.String>
getParams()
-
Methods inherited from class akka.http.scaladsl.model.HttpHeader
fastFind, is, isNot, lowercaseName, name, parse, unapply, unsafeToString, value
-
Methods inherited from class akka.http.javadsl.model.HttpHeader
parse, renderInRequests, renderInResponses
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.http.impl.util.Renderable
render
-
Methods inherited from interface akka.http.impl.util.ToStringRenderable
toString
-
-
-
-
Method Detail
-
dispositionType
public abstract ContentDispositionType dispositionType()
-
getParams
public abstract java.util.Map<java.lang.String,java.lang.String> getParams()
-
create
public static ContentDisposition create(ContentDispositionType dispositionType, java.util.Map<java.lang.String,java.lang.String> params)
-
-