Uses of Class
com.sun.xml.ws.api.server.InstanceResolver

Packages that use InstanceResolver
com.sun.xml.ws.api.server APIs for hosting JAX-WS services. 
com.sun.xml.ws.server JAX-WS 2.0.1 Server Runtime 
com.sun.xml.ws.server.servlet   
 

Uses of InstanceResolver in com.sun.xml.ws.api.server
 

Methods in com.sun.xml.ws.api.server that return InstanceResolver
static
<T> InstanceResolver<T>
InstanceResolver.createDefault(Class<T> clazz)
          Creates a default InstanceResolver that serves the given class.
static
<T> InstanceResolver<T>
InstanceResolver.createDefault(Class<T> clazz, boolean bool)
          Deprecated. This is added here because a Glassfish integration happened with this signature. Please do not use this. Will be removed after the next GF integration.
static
<T> InstanceResolver<T>
InstanceResolver.createSingleton(T singleton)
          Creates a InstanceResolver implementation that always returns the specified singleton instance.
 

Uses of InstanceResolver in com.sun.xml.ws.server
 

Subclasses of InstanceResolver in com.sun.xml.ws.server
(package private)  class AbstractInstanceResolver<T>
          Partial implementation of InstanceResolver with convenience methods to do the resource injection.
 class AbstractMultiInstanceResolver<T>
          Partial implementation of InstanceResolver with code to handle multiple instances per server.
 class SingletonResolver<T>
          InstanceResolver that always returns a single instance.
 class StatefulInstanceResolver<T>
          InstanceResolver that looks at JAX-WS cookie header to determine the instance to which a message will be routed.
 

Uses of InstanceResolver in com.sun.xml.ws.server.servlet
 

Subclasses of InstanceResolver in com.sun.xml.ws.server.servlet
 class HttpSessionInstanceResolver<T>
          Instance resolver that ties a service instance per HttpSession.