Uses of Class
com.sun.xml.ws.transport.http.HttpAdapter

Packages that use HttpAdapter
com.sun.xml.ws.transport.http   
com.sun.xml.ws.transport.http.server   
com.sun.xml.ws.transport.http.servlet Servlet transport for the JAX-WS RI. 
 

Uses of HttpAdapter in com.sun.xml.ws.transport.http
 

Classes in com.sun.xml.ws.transport.http with type parameters of type HttpAdapter
 class HttpAdapterList<T extends HttpAdapter>
          List of HttpAdapters created together.
 

Fields in com.sun.xml.ws.transport.http with type parameters of type HttpAdapter
 HttpAdapterList<? extends HttpAdapter> HttpAdapter.owner
           
 

Methods in com.sun.xml.ws.transport.http that return HttpAdapter
static HttpAdapter HttpAdapter.createAlone(WSEndpoint endpoint)
          Creates a lone HttpAdapter that does not know of any other HttpAdapters.
 

Methods in com.sun.xml.ws.transport.http with parameters of type HttpAdapter
abstract  boolean HttpMetadataPublisher.handleMetadataRequest(HttpAdapter adapter, WSHTTPConnection connection)
          When HttpAdapter receives a GET request with a query string (which is a convention for metadata requests, such as '?wsdl' or '?xsd=...'), then this method is invoked to allow components to intercept the request.
 

Constructor parameters in com.sun.xml.ws.transport.http with type arguments of type HttpAdapter
HttpAdapter(WSEndpoint endpoint, HttpAdapterList<? extends HttpAdapter> owner)
          Deprecated. remove as soon as we can update the test util.
HttpAdapter(WSEndpoint endpoint, HttpAdapterList<? extends HttpAdapter> owner, String urlPattern)
           
 

Uses of HttpAdapter in com.sun.xml.ws.transport.http.server
 

Constructors in com.sun.xml.ws.transport.http.server with parameters of type HttpAdapter
ServerConnectionImpl(HttpAdapter adapter, com.sun.net.httpserver.HttpExchange httpExchange)
           
WSHttpHandler(HttpAdapter adapter, Executor executor)
           
 

Uses of HttpAdapter in com.sun.xml.ws.transport.http.servlet
 

Subclasses of HttpAdapter in com.sun.xml.ws.transport.http.servlet
 class ServletAdapter
          HttpAdapter for servlets.
 

Constructors in com.sun.xml.ws.transport.http.servlet with parameters of type HttpAdapter
ServletConnectionImpl(HttpAdapter adapter, javax.servlet.ServletContext context, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)