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

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpServerImpl.java81 public void removeContext (String path) throws IllegalArgumentException { method in class:HttpServerImpl
82 server.removeContext (path);
85 public void removeContext (HttpContext context) throws IllegalArgumentException { method in class:HttpServerImpl
86 server.removeContext (context);
H A DHttpsServerImpl.java89 public void removeContext (String path) throws IllegalArgumentException { method in class:HttpsServerImpl
90 server.removeContext (path);
93 public void removeContext (HttpContext context) throws IllegalArgumentException { method in class:HttpsServerImpl
94 server.removeContext (context);
H A DServerImpl.java232 public synchronized void removeContext (String path) throws IllegalArgumentException { method in class:ServerImpl
240 public synchronized void removeContext (HttpContext context) throws IllegalArgumentException { method in class:ServerImpl
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpServer.java195 * can later be removed from the server using this with the {@link #removeContext(String)} method.
216 * can later be removed from the server using this with the {@link #removeContext(String)} method.
238 public abstract void removeContext (String path) throws IllegalArgumentException ; method in class:HttpServer
247 public abstract void removeContext (HttpContext context) ; method in class:HttpServer
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DServerMgr.java110 /*package*/ void removeContext(HttpContext context) { method in class:ServerMgr
120 state.getServer().removeContext(context);

Completed in 1844 milliseconds