-
- All Implemented Interfaces:
-
com.hexagonkt.http.model.HttpBase,com.hexagonkt.http.model.HttpMessage,com.hexagonkt.http.model.HttpRequest
public interface HttpServerRequestPort implements HttpRequest
-
-
Method Summary
Modifier and Type Method Description X509Certificatecertificate()abstract List<X509Certificate>getCertificateChain()abstract LonggetContentLength()abstract List<ContentType>getAccept()abstract ObjectgetBody()abstract ContentTypegetContentType()abstract List<HttpCookie>getCookies()abstract MultiMap<String, String>getFormParameters()abstract MultiMap<String, String>getHeaders()abstract StringgetHost()abstract HttpMethodgetMethod()abstract List<HttpPartPort>getParts()abstract StringgetPath()abstract IntegergetPort()abstract HttpProtocolgetProtocol()abstract MultiMap<String, String>getQueryParameters()-
Methods inherited from class com.hexagonkt.http.model.HttpMessage
bodyString -
Methods inherited from class com.hexagonkt.http.model.HttpRequest
cookiesMap -
Methods inherited from class com.hexagonkt.http.server.model.HttpServerRequestPort
origin, partsMap, referer, url, userAgent -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
certificate
X509Certificate certificate()
-
getCertificateChain
abstract List<X509Certificate> getCertificateChain()
-
getContentLength
abstract Long getContentLength()
-
getContentType
abstract ContentType getContentType()
-
getCookies
abstract List<HttpCookie> getCookies()
-
getFormParameters
abstract MultiMap<String, String> getFormParameters()
-
getHeaders
abstract MultiMap<String, String> getHeaders()
-
getMethod
abstract HttpMethod getMethod()
-
getProtocol
abstract HttpProtocol getProtocol()
-
getQueryParameters
abstract MultiMap<String, String> getQueryParameters()
-
-
-
-