public interface InboundHeaders
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getHeader(java.lang.String name)
Returns the value of the specified request header as a
String. |
HeaderType |
getHeaderType()
Return the type of header key syntax used for this.
|
HeaderType getHeaderType()
enum specifying the type of headers present.java.lang.String getHeader(java.lang.String name)
String. If the request does not include a
header with the specified input name, then this method returns null.name - The name of the desired request header.String containing the value of the specified input request header, or null if the request header is not present.