Searched defs:HttpServer (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/net/URLConnection/
H A DResponses.java58 static class HttpServer implements Runnable { class in class:Responses
61 public HttpServer() { method in class:Responses.HttpServer
116 HttpServer svr = new HttpServer();
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpServer.java39 * This class implements a simple HTTP server. A HttpServer is bound to an IP address
47 * to a HttpServer is encapsulated by a {@link HttpContext} object. HttpContexts
61 * For example. Given a HttpServer with the following HttpContexts configured.<p>
83 * be accepted by the HttpServer. When the limit is reached, further connections may be
90 public abstract class HttpServer { class
94 protected HttpServer () { method in class:HttpServer
98 * creates a HttpServer instance which is initially not bound to any local address/port.
99 * The HttpServer is acquired from the currently installed {@link HttpServerProvider}
103 public static HttpServer create () throws IOException {
108 * Create a <code>HttpServer</cod
[all...]
/openjdk7/jdk/test/java/net/URLClassLoader/
H A DHttpTest.java42 static class HttpServer implements Runnable { class in class:HttpTest
44 private static HttpServer svr = null;
121 HttpServer() throws Exception { method in class:HttpTest.HttpServer
142 public static HttpServer create() throws Exception {
146 svr = new HttpServer();
200 HttpServer svr = HttpServer.create();
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpServer.java51 public class HttpServer { class
60 * Create a <code>HttpServer<code> instance with the specified callback object
67 public HttpServer (HttpCallback cb) throws IOException { method in class:HttpServer
72 * Create a <code>HttpServer<code> instance with the specified number of
83 public HttpServer (HttpCallback cb, int threads, int cperthread) method in class:HttpServer
89 * Create a <code>HttpServer<code> instance with the specified number
104 public HttpServer (HttpCallback cb, int threads, int cperthread, int port) method in class:HttpServer
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpServer.java54 public class HttpServer { class
66 * Create a <code>HttpServer<code> instance with the specified callback object
73 public HttpServer (HttpCallback cb) throws IOException { method in class:HttpServer
78 * Create a <code>HttpServer<code> instance with the specified number of
89 public HttpServer (HttpCallback cb, int threads, int cperthread) method in class:HttpServer
95 * Create a <code>HttpServer<code> instance with the specified number
110 public HttpServer (HttpCallback cb, int threads, int cperthread, int port) method in class:HttpServer

Completed in 1632 milliseconds