Searched refs:HttpHandler (Results 1 - 25 of 78) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpHandler.java35 public interface HttpHandler { interface
H A DHttpContext.java33 * to a {@link HttpHandler} which is invoked to handle requests destined
50 * @return the HttpHandler for this context
52 public abstract HttpHandler getHandler () ;
60 public abstract void setHandler (HttpHandler h) ;
H A DFilter.java56 private HttpHandler handler;
58 public Chain (List<Filter> filters, HttpHandler handler) {
H A DHttpServer.java43 * One or more {@link HttpHandler} objects must be associated with a server
44 * in order to process requests. Each such HttpHandler is registered
48 * are created by calling {@link #createContext(String,HttpHandler)}.
207 public abstract HttpContext createContext (String path, HttpHandler handler) ;
211 * {@link HttpContext#setHandler(HttpHandler)}. A HttpContext represents a mapping from a
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpContext.java33 * service to a {@link HttpHandler} which is invoked to handle requests
44 protected HttpHandler handler;
54 public void setHandler(HttpHandler handler) {
H A DHttpHandler.java35 * it using {@link HttpContext#setHandler(HttpHandler)} during
41 public abstract class HttpHandler { class
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpContextImpl.java35 * to a {@link HttpHandler} which is invoked to handle requests destined
38 * HttpContext instances are created by {@link HttpServer#createContext(String,String,HttpHandler,Object)}
45 private HttpHandler handler;
58 HttpContextImpl (String protocol, String path, HttpHandler cb, ServerImpl server) {
75 * @return the HttpHandler for this context
77 public HttpHandler getHandler () {
81 public void setHandler (HttpHandler h) {
/openjdk7/jdk/test/java/net/URLClassLoader/
H A DClassLoad.java36 import com.sun.net.httpserver.HttpHandler;
45 HttpHandler handler = new HttpHandler() {
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DHeadTest.java38 import com.sun.net.httpserver.HttpHandler;
53 chunkedContext.setHandler(new HttpHandler() {
72 clContext.setHandler(new HttpHandler() {
H A DB6401598.java38 import com.sun.net.httpserver.HttpHandler;
43 static class MyHandler implements HttpHandler {
H A DB6421581.java53 context.setHandler(new HttpHandler() {
H A DB6431193.java50 class MyHandler implements HttpHandler {
H A DB6433018.java90 static class Handler implements HttpHandler {
H A DB6526158.java81 static class Handler implements HttpHandler {
H A DB6526913.java74 static class Handler implements HttpHandler {
/openjdk7/jdk/test/javax/swing/JEditorPane/
H A Dbug4714674.java11 import com.sun.net.httpserver.HttpHandler;
90 HttpHandler handler = new DeafHandler();
111 class DeafHandler implements HttpHandler {
/openjdk7/jdk/test/sun/net/www/http/ChunkedInputStream/
H A DChunkedEncodingTest.java35 import com.sun.net.httpserver.HttpHandler;
86 HttpHandler httpHandler = new SimpleHandler();
92 static class SimpleHandler implements HttpHandler {
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DUserAuth.java94 class RedirectHandler implements HttpHandler {
107 class HasAuthHandler implements HttpHandler {
H A DBasicLongCredentials.java33 import com.sun.net.httpserver.HttpHandler;
95 static class Handler implements HttpHandler {
H A DChunkedErrorStream.java153 class FirstHandler implements HttpHandler {
175 static class SecondHandler implements HttpHandler {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DPortableHttpHandler.java34 import javax.xml.ws.spi.http.HttpHandler;
41 * {@link HttpHandler} implementation that serves the actual request.
45 final class PortableHttpHandler extends HttpHandler {
H A DWSHttpHandler.java31 import com.sun.net.httpserver.HttpHandler;
43 * {@link HttpHandler} implementation that serves the actual request.
48 final class WSHttpHandler implements HttpHandler {
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest10.java65 static class Handler implements HttpHandler {
H A DTest11.java36 static class Handler implements HttpHandler {
/openjdk7/jdk/test/java/net/HttpCookie/
H A DIllegalCookieNameTest.java63 class HHandler implements HttpHandler {

Completed in 80 milliseconds

1234