Package org.glassfish.grizzly.http
Class HttpPacket
java.lang.Object
org.glassfish.grizzly.http.HttpPacket
- All Implemented Interfaces:
Cacheable
- Direct Known Subclasses:
HttpContent,HttpHeader
Abstraction, which represents any type of HTTP message:
HttpRequestPacket, HttpResponsePacket,
HttpContent.- Author:
- Alexey Stashok
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract HttpHeaderGet the HTTP message header, associated with this HTTP packet.abstract booleanisHeader()Returns true, if this HTTP message represents HTTP message header, or false otherwise.static booleanReturns true if passedObjectis a HttpPacket.
-
Constructor Details
-
HttpPacket
public HttpPacket()
-
-
Method Details
-
isHttp
Returns true if passedObjectis a HttpPacket.- Parameters:
packet-- Returns:
- true if passed
Objectis a HttpPacket.
-
isHeader
public abstract boolean isHeader()Returns true, if this HTTP message represents HTTP message header, or false otherwise.- Returns:
- true, if this HTTP message represents HTTP message header, or false otherwise.
-
getHttpHeader
Get the HTTP message header, associated with this HTTP packet.- Returns:
HttpHeader.
-