MCPcopy Create free account

hub / github.com/curtcox/JLHTTP / types & classes

Types & classes17 in github.com/curtcox/JLHTTP

ClassChunkedInputStream
The {@code ChunkedInputStream} decodes an InputStream whose data has the "chunked" transfer encoding applied to it, providing the underlying data.
src/main/java/net/freeutils/httpserver/HTTPServer.java:301
ClassChunkedOutputStream
The {@code ChunkedOutputStream} encodes an OutputStream with the "chunked" transfer encoding. It should be used only when the content length is not kn
src/main/java/net/freeutils/httpserver/HTTPServer.java:386
InterfaceContextHandler
A {@code ContextHandler} serves the content of resources within a context. @see VirtualHost#addContext
src/main/java/net/freeutils/httpserver/HTTPServer.java:1032
ClassContextInfo
The {@code ContextInfo} class holds a single context's information.
src/main/java/net/freeutils/httpserver/HTTPServer.java:788
ClassFileContextHandler
The {@code FileContextHandler} services a context by mapping it to a file or folder (recursively) on disk.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1053
ClassHTTPServer
The {@code HTTPServer} class implements a light-weight HTTP server. <p> This server implements all functionality required by RFC 2616 ("Hypertext Tran
src/main/java/net/freeutils/httpserver/HTTPServer.java:125
ClassHeader
The {@code Header} class encapsulates a single HTTP header.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1105
ClassHeaders
The {@code Headers} class encapsulates a collection of HTTP headers. <p> Header names are treated case-insensitively, although this class retains thei
src/main/java/net/freeutils/httpserver/HTTPServer.java:1148
ClassLimitedInputStream
The {@code LimitedInputStream} provides access to a limited number of consecutive bytes from the underlying InputStream, starting at its current posit
src/main/java/net/freeutils/httpserver/HTTPServer.java:228
ClassMethodContextHandler
The {@code MethodContextHandler} services a context by invoking a handler method on a specified object. <p> The method must have the same signature an
src/main/java/net/freeutils/httpserver/HTTPServer.java:1075
ClassMultipartInputStream
The {@code MultipartInputStream} decodes an InputStream whose data has a "multipart/ " content type (see RFC 2046), providing the underlying data of i
src/main/java/net/freeutils/httpserver/HTTPServer.java:491
ClassMultipartIterator
The {@code MultipartIterator} iterates over the parts of a multipart/form-data request. <p> For example, to support file upload from a web browser: <o
src/main/java/net/freeutils/httpserver/HTTPServer.java:676
ClassPart
The {@code Part} class encapsulates a single part of the multipart.
src/main/java/net/freeutils/httpserver/HTTPServer.java:681
ClassRequest
The {@code Request} class encapsulates a single HTTP request.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1320
ClassResponse
The {@code Response} class encapsulates a single HTTP response.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1572
ClassSocketHandlerThread
The {@code SocketHandlerThread} handles accepted sockets.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1867
ClassVirtualHost
The {@code VirtualHost} class represents a virtual host in the server.
src/main/java/net/freeutils/httpserver/HTTPServer.java:783