Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/curtcox/JLHTTP
/ types & classes
Types & classes
17 in github.com/curtcox/JLHTTP
⨍
Functions
145
◇
Types & classes
17
Class
ChunkedInputStream
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
Class
ChunkedOutputStream
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
Interface
ContextHandler
A {@code ContextHandler} serves the content of resources within a context. @see VirtualHost#addContext
src/main/java/net/freeutils/httpserver/HTTPServer.java:1032
Class
ContextInfo
The {@code ContextInfo} class holds a single context's information.
src/main/java/net/freeutils/httpserver/HTTPServer.java:788
Class
FileContextHandler
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
Class
HTTPServer
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
Class
Header
The {@code Header} class encapsulates a single HTTP header.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1105
Class
Headers
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
Class
LimitedInputStream
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
Class
MethodContextHandler
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
Class
MultipartInputStream
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
Class
MultipartIterator
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
Class
Part
The {@code Part} class encapsulates a single part of the multipart.
src/main/java/net/freeutils/httpserver/HTTPServer.java:681
Class
Request
The {@code Request} class encapsulates a single HTTP request.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1320
Class
Response
The {@code Response} class encapsulates a single HTTP response.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1572
Class
SocketHandlerThread
The {@code SocketHandlerThread} handles accepted sockets.
src/main/java/net/freeutils/httpserver/HTTPServer.java:1867
Class
VirtualHost
The {@code VirtualHost} class represents a virtual host in the server.
src/main/java/net/freeutils/httpserver/HTTPServer.java:783