Uses of Class
org.glassfish.grizzly.http.HttpContent

Packages that use HttpContent
org.glassfish.grizzly.http   
 

Uses of HttpContent in org.glassfish.grizzly.http
 

Subclasses of HttpContent in org.glassfish.grizzly.http
 class HttpBrokenContent
          HttpContent message, which represents broken HTTP content.
 class HttpTrailer
          HttpContent message, which represents HTTP trailer message.
 

Fields in org.glassfish.grizzly.http declared as HttpContent
protected  HttpContent HttpContent.Builder.packet
           
 

Methods in org.glassfish.grizzly.http that return HttpContent
 HttpContent HttpContent.append(HttpContent element)
           
 HttpContent HttpContent.Builder.build()
          Build the HttpContent message.
 HttpContent HttpBrokenContent.Builder.build()
          Build the HttpTrailer message.
static HttpContent HttpContent.create()
           
static HttpContent HttpContent.create(HttpHeader httpHeader)
           
protected  HttpContent HttpServerFilter.customizeErrorResponse(HttpResponsePacket response)
           
 HttpContent ContentEncoding.encode(Connection connection, HttpContent httpContent)
          Encode HTTP packet content represented by HttpContent.
 HttpContent LZMAContentEncoding.encode(Connection connection, HttpContent httpContent)
           
 HttpContent GZipContentEncoding.encode(Connection connection, HttpContent httpContent)
           
 HttpContent ParsingResult.getHttpContent()
           
 

Methods in org.glassfish.grizzly.http with parameters of type HttpContent
 HttpContent HttpContent.append(HttpContent element)
           
static ParsingResult ParsingResult.create(HttpContent httpContent, Buffer remainderBuffer)
           
 ParsingResult ContentEncoding.decode(Connection connection, HttpContent httpContent)
          Decode HTTP packet content represented by HttpContent.
 ParsingResult LZMAContentEncoding.decode(Connection connection, HttpContent httpContent)
           
 ParsingResult GZipContentEncoding.decode(Connection connection, HttpContent httpContent)
           
 HttpContent ContentEncoding.encode(Connection connection, HttpContent httpContent)
          Encode HTTP packet content represented by HttpContent.
 HttpContent LZMAContentEncoding.encode(Connection connection, HttpContent httpContent)
           
 HttpContent GZipContentEncoding.encode(Connection connection, HttpContent httpContent)
           
protected  Buffer HttpCodecFilter.encodeHttpPacket(FilterChainContext ctx, HttpHeader httpHeader, HttpContent httpContent, boolean isContentAlreadyEncoded)
           
static boolean HttpContent.isBroken(HttpContent httpContent)
          Returns true if passed HttpContent is a BrokenHttpContent.
static boolean HttpTrailer.isTrailer(HttpContent httpContent)
          Returns true if passed HttpContent is a HttpTrailder.
 void HttpProbe.onContentChunkParseEvent(Connection connection, HttpContent content)
          Method will be called, when HTTP message content chunk gets parsed (either request or response).
 void HttpProbe.Adapter.onContentChunkParseEvent(Connection connection, HttpContent content)
          Method will be called, when HTTP message content chunk gets parsed (either request or response).
 void HttpProbe.onContentChunkSerializeEvent(Connection connection, HttpContent content)
          Method will be called, when HTTP message content chunk is prepared to be serialized (either request or response).
 void HttpProbe.Adapter.onContentChunkSerializeEvent(Connection connection, HttpContent content)
          Method will be called, when HTTP message content chunk is prepared to be serialized (either request or response).
protected abstract  void HttpCodecFilter.onHttpContentEncoded(HttpContent content, FilterChainContext ctx)
           Invoked when a HTTP body chunk has been encoded in preparation to being transmitted to the user-agent.
protected  void HttpClientFilter.onHttpContentEncoded(HttpContent content, FilterChainContext ctx)
           
protected  void HttpServerFilter.onHttpContentEncoded(HttpContent content, FilterChainContext ctx)
           
protected abstract  void HttpCodecFilter.onHttpContentParsed(HttpContent content, FilterChainContext ctx)
           Invoked as request/response body content has been processed by this Filter.
protected  void HttpClientFilter.onHttpContentParsed(HttpContent content, FilterChainContext ctx)
           
protected  void HttpServerFilter.onHttpContentParsed(HttpContent content, FilterChainContext ctx)
           
 void ChunkedTransferEncoding.prepareSerialize(FilterChainContext ctx, HttpHeader httpHeader, HttpContent content)
          This method will be called by HttpCodecFilter to let TransferEncoding prepare itself for the content serialization.
 void TransferEncoding.prepareSerialize(FilterChainContext ctx, HttpHeader httpHeader, HttpContent content)
          This method will be called by HttpCodecFilter to let TransferEncoding prepare itself for the content serialization.
 void FixedLengthTransferEncoding.prepareSerialize(FilterChainContext ctx, HttpHeader httpHeader, HttpContent httpContent)
           
 Buffer ChunkedTransferEncoding.serializePacket(FilterChainContext ctx, HttpContent httpContent)
          Serialize HTTP packet payload, represented by HttpContent using specific transfer encoding.
 Buffer TransferEncoding.serializePacket(FilterChainContext ctx, HttpContent httpContent)
          Serialize HTTP packet payload, represented by HttpContent using specific transfer encoding.
 Buffer FixedLengthTransferEncoding.serializePacket(FilterChainContext ctx, HttpContent httpContent)
          Serialize HTTP packet payload, represented by HttpContent using specific transfer encoding.
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.