Uses of Interface
com.sun.ws.rest.spi.service.ComponentProvider

Packages that use ComponentProvider
com.sun.ws.rest.api.client   
com.sun.ws.rest.spi.container Classes that define the contract that a container adaptor must implement in order to host API classes. 
com.sun.ws.rest.spi.resource Classes that define the contract for a resource provider. 
com.sun.ws.rest.spi.service Classes used by the SPIs to support dynamic extensions. 
 

Uses of ComponentProvider in com.sun.ws.rest.api.client
 

Methods in com.sun.ws.rest.api.client with parameters of type ComponentProvider
static Client Client.create(ClientConfig cc, ComponentProvider cp)
          Create a default client with client configuration and component provider.
 

Constructors in com.sun.ws.rest.api.client with parameters of type ComponentProvider
Client(ClientHandler root, ClientConfig config, ComponentProvider provider)
          Create a new instance with a client configuration and a compoenent provider.
 

Uses of ComponentProvider in com.sun.ws.rest.spi.container
 

Methods in com.sun.ws.rest.spi.container that return ComponentProvider
 ComponentProvider WebApplication.getComponentProvider()
          Get the component provider that can be used for instantiating components.
 

Methods in com.sun.ws.rest.spi.container with parameters of type ComponentProvider
 void WebApplication.initiate(ResourceConfig resourceConfig, ComponentProvider provider)
          Initiate the Web application.
 

Uses of ComponentProvider in com.sun.ws.rest.spi.resource
 

Methods in com.sun.ws.rest.spi.resource with parameters of type ComponentProvider
 ResourceProvider ResourceProviderFactory.createProvider(ComponentProvider provider, AbstractResource resource, java.util.Map<java.lang.String,java.lang.Boolean> resourceFeatures, java.util.Map<java.lang.String,java.lang.Object> resourceProperties)
          Obtain a ResourceProvider instance for the supplied resourceClass.
 java.lang.Object ResourceProvider.getInstance(ComponentProvider provider, HttpRequestContext request)
          Called to obtain an instance of a resource class.
 void ResourceProvider.init(ComponentProvider provider, AbstractResource resource)
          Specifies the class of the resource that the provider instance will manage access to.
 

Uses of ComponentProvider in com.sun.ws.rest.spi.service
 

Methods in com.sun.ws.rest.spi.service with parameters of type ComponentProvider
static
<T> ServiceFinder<T>
ServiceFinder.find(java.lang.Class<T> service, boolean ignoreOnClassNotFound, ComponentProvider componentProvider)
          Locates and incrementally instantiates the available providers of a given service using the context class loader.
static
<T> ServiceFinder<T>
ServiceFinder.find(java.lang.Class<T> service, java.lang.ClassLoader loader, boolean ignoreOnClassNotFound, ComponentProvider componentProvider)
          Locates and incrementally instantiates the available providers of a given service using the given class loader.