public interface HttpMessage
| Modifier and Type | Method and Description |
|---|---|
HttpEntity |
getEntity() |
Collection<String> |
getHeaderNames() |
org.mule.runtime.api.util.MultiMap<String,String> |
getHeaders() |
String |
getHeaderValue(String headerName) |
String |
getHeaderValueIgnoreCase(String headerName) |
Collection<String> |
getHeaderValues(String headerName) |
Collection<String> |
getHeaderValuesIgnoreCase(String headerName) |
Collection<String> getHeaderNames()
String getHeaderValue(String headerName)
headerName - name of the headerString getHeaderValueIgnoreCase(String headerName)
headerName - name of the headerCollection<String> getHeaderValues(String headerName)
headerName - name of the headerCollection containing all the values of that headers. If not such headers exists return null,
otherwise the collection of header valuesCollection<String> getHeaderValuesIgnoreCase(String headerName)
headerName - name of the headerCollection containing all the values of that headers, regardless of the case. If not such
headers exists return null, otherwise the collection of header valuesorg.mule.runtime.api.util.MultiMap<String,String> getHeaders()
MultiMap containing all headersHttpEntity getEntity()
EmptyHttpEntity is returnedCopyright © 2003–2018 MuleSoft, Inc.. All rights reserved.