- HT - Static variable in class ej.hoka.http.support.CharacterSeparatedList
-
Horizontal TAB character.
- HTTP_METHOD_DELETE - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP DELETE
method token as String.
- HTTP_METHOD_GET - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP GET
method token as String.
- HTTP_METHOD_POST - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP POST
method token as String.
- HTTP_METHOD_PUT - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP PUT
method token as String.
- HTTP_RESPONSE - Static variable in class ej.hoka.log.Messages
-
A response has been sent.
- HTTP_STATUS_BADREQUEST - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 400: the request is not valid.
- HTTP_STATUS_FORBIDDEN - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 403: the client doesn't have the permission to access the requested URL.
- HTTP_STATUS_INTERNALERROR - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 500: the server has encountered an error while generating the response.
- HTTP_STATUS_MEDIA_TYPE - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 415: the requested resource type is not supported.
- HTTP_STATUS_METHOD - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 405: the HTTP request method (GET/POST/PUT/DELETE) is not allowed on the server for the requested URI.
- HTTP_STATUS_NOTACCEPTABLE - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 406: the client cannot handle the data returned in the HTTP response.
- HTTP_STATUS_NOTFOUND - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 404: the requested URL has not been found.
- HTTP_STATUS_NOTIMPLEMENTED - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 501: the HTTP request method is not implemented.
- HTTP_STATUS_NOTMODIFIED - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 304: the requested resources hasn't been modified since the last time.
- HTTP_STATUS_OK - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 200: the response has been found and correctly sent.
- HTTP_STATUS_REDIRECT - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 301: the requested URL redirected to another URL.
- HTTP_STATUS_REQUESTTIMEOUT - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 408: the client initiated the connection but didn't send the request (idle connection).
- HTTP_STATUS_UNAUTHORIZED - Static variable in class ej.hoka.http.HTTPConstants
-
HTTP code 401: the requested resources require valid authentication credentials.
- HTTPConstants - Class in ej.hoka.http
-
Constants for HTTP statuses, methods and header fields.
- HTTPEncodingRegistry - Class in ej.hoka.http.encoding
-
Class that stores a register of available encoding and transfer coding handlers.
- HTTPEncodingRegistry() - Constructor for class ej.hoka.http.encoding.HTTPEncodingRegistry
-
- HTTPPart - Class in ej.hoka.http.body
-
A part of a multipart HTTP request.
- HTTPRequest - Class in ej.hoka.http
-
Represents a HTTP Request.
- HTTPRequest(InputStream, HTTPEncodingRegistry) - Constructor for class ej.hoka.http.HTTPRequest
-
Constructs a new instance of HTTPRequest.
- HTTPResponse - Class in ej.hoka.http
-
Represents a HTTP Response.
- HTTPResponse() - Constructor for class ej.hoka.http.HTTPResponse
-
- HTTPResponse(byte[]) - Constructor for class ej.hoka.http.HTTPResponse
-
Creates a new
HTTPResponse
using the given byte array as response data.
- HTTPResponse(InputStream) - Constructor for class ej.hoka.http.HTTPResponse
-
Creates a new
HTTPResponse
using the given
InputStream
as the response data.
- HTTPResponse(InputStream, int) - Constructor for class ej.hoka.http.HTTPResponse
-
Creates a new
HTTPResponse
using the given
InputStream
as the response data.
- HTTPResponse(String) - Constructor for class ej.hoka.http.HTTPResponse
-
Creates a new
HTTPResponse
using the given
String
as response data.
- HTTPResponse(String, String) - Constructor for class ej.hoka.http.HTTPResponse
-
Creates a new
HTTPResponse
using the
String
data
as response data and the
encoding
.
- HTTPResponse(String, String, InputStream) - Constructor for class ej.hoka.http.HTTPResponse
-
Creates a new
HTTPResponse
using the
InputStream
body
as response data.
- HTTPResponse(String, String, String) - Constructor for class ej.hoka.http.HTTPResponse
-
Creates a new
HTTPResponse
using the
String
body
as response data.
- HTTPServer - Class in ej.hoka.http
-
HTTP Server.
- HTTPServer(int, int, int) - Constructor for class ej.hoka.http.HTTPServer
-
Constructs the underlying
TCPServer
and the HTTP server that manage jobs to handle the connections from
the
TCPServer
.
- HTTPServer(int, int, int, RequestHandler) - Constructor for class ej.hoka.http.HTTPServer
-
Constructs the underlying
TCPServer
and the HTTP server that manage jobs to handle the connections from
the
TCPServer
with
requestHandler
.
- HTTPServer(int, int, int, RequestHandler, ServerSocketFactory) - Constructor for class ej.hoka.http.HTTPServer
-
Constructs the underlying
TCPServer
and the HTTP server that manage jobs to handle the connections from
the
TCPServer
with
requestHandler
.
- HTTPServer(int, int, int, RequestHandler, ServerSocketFactory, int) - Constructor for class ej.hoka.http.HTTPServer
-
Constructs the underlying
TCPServer
and the HTTP server that manage jobs to handle the connections from
the
TCPServer
with
requestHandler
.
- HTTPServer(TCPServer, int, RequestHandler) - Constructor for class ej.hoka.http.HTTPServer
-
Constructs a HTTP server that manage jobs to handle the connections from tcpServer
with
requestHandler
.
- HTTPServer(TCPServer, int, RequestHandler, HTTPEncodingRegistry) - Constructor for class ej.hoka.http.HTTPServer
-
Constructs a HTTP server that manage jobs to handle the connections from tcpServer
with
requestHandler
.