Uses of Class
com.kttdevelopment.simplehttpserver.SimpleHttpServer
-
Packages that use SimpleHttpServer Package Description com.kttdevelopment.simplehttpserver com.kttdevelopment.simplehttpserver.handler -
-
Uses of SimpleHttpServer in com.kttdevelopment.simplehttpserver
Subclasses of SimpleHttpServer in com.kttdevelopment.simplehttpserver Modifier and Type Class Description classSimpleHttpsServerThis class is a simplified implementation ofHttpsServer. The server must have aHttpsConfiguratorset usingSimpleHttpsServer.setHttpsConfigurator(HttpsConfigurator).
At least oneHttpHandlermust be created in order to process requests.Methods in com.kttdevelopment.simplehttpserver that return SimpleHttpServer Modifier and Type Method Description static SimpleHttpServerSimpleHttpServer. create()Creates aSimpleHttpServer.static SimpleHttpServerSimpleHttpServer. create(int port)Creates aSimpleHttpServerbounded to a port.static SimpleHttpServerSimpleHttpServer. create(int port, int backlog)Creates aSimpleHttpServerbounded to a port. -
Uses of SimpleHttpServer in com.kttdevelopment.simplehttpserver.handler
Constructors in com.kttdevelopment.simplehttpserver.handler with parameters of type SimpleHttpServer Constructor Description TemporaryHandler(SimpleHttpServer server, HttpHandler handler)Creates a temporary handler that removes itself after the first connection.TemporaryHandler(SimpleHttpServer server, HttpHandler handler, long maxTime)Creates a temporary handler that removes itself after the first connection, or after the time expires.
-