Uses of Class
org.hcjf.io.net.http.HttpPackage
-
Packages that use HttpPackage Package Description org.hcjf.io.net.http org.hcjf.io.net.http.layered org.hcjf.io.net.http.pipeline -
-
Uses of HttpPackage in org.hcjf.io.net.http
Subclasses of HttpPackage in org.hcjf.io.net.http Modifier and Type Class Description classHttpRequestThis particular kind of package contains the request information.classHttpResponseThis class represents a http response package.Methods in org.hcjf.io.net.http that return HttpPackage Modifier and Type Method Description protected HttpPackageHttpClient. decode(NetPackage netPackage)This method decode the net package to obtain the implementation dataprotected HttpPackageHttpServer. decode(NetPackage netPackage)This method decode the net package to obtain the implementation dataMethods in org.hcjf.io.net.http with parameters of type HttpPackage Modifier and Type Method Description HttpSessionHttpClient. checkSession(HttpSession session, HttpPackage payLoad, NetPackage netPackage)HttpSessionHttpServer. checkSession(HttpSession session, HttpPackage payLoad, NetPackage netPackage)This method must update the http session with all the information of the request.booleanHttpPackage.ChunkedDecoderLayer. done(HttpPackage httpPackage)Verify if the body is complete.booleanHttpPackage.TransferDecodingLayerInterface. done(HttpPackage httpPackage)Verify if the body is done depends of the decode method.protected byte[]HttpClient. encode(HttpPackage payLoad)This method decode the implementation data.protected byte[]HttpServer. encode(HttpPackage payLoad)This method decode the implementation data.protected voidHttpServer. onCheckSessionError(HttpSession session, HttpPackage requestPayLoad, NetPackage netPackage, java.lang.Throwable exception)Manages an exception thrown while trying to check session (authenticate) by calling to the specific context for get an error response depending on exception information.protected voidHttpClient. onConnect(HttpSession session, HttpPackage payLoad, NetPackage netPackage)protected voidHttpClient. onRead(HttpSession session, HttpPackage payLoad, NetPackage netPackage)protected voidHttpServer. onRead(HttpSession session, HttpPackage payLoad, NetPackage netPackage)First check if the package is complete, then try to found the context using the http request information a create the response package.Constructors in org.hcjf.io.net.http with parameters of type HttpPackage Constructor Description HttpPackage(HttpPackage httpPackage) -
Uses of HttpPackage in org.hcjf.io.net.http.layered
Subclasses of HttpPackage in org.hcjf.io.net.http.layered Modifier and Type Class Description classLayeredRequestThis class represents a package that contains all the information about a restful request.classLayeredResponseResponse package for the layered contexts. -
Uses of HttpPackage in org.hcjf.io.net.http.pipeline
Subclasses of HttpPackage in org.hcjf.io.net.http.pipeline Modifier and Type Class Description classChunkedHttpPipelineResponseThis specific pipeline implements a chunked http transfer encoding.classHttpPipelineResponseThis class provides a way to create a pipeline between the http connection and the specific data source.classMultipartHttpPipelineResponse
-