Uses of Class
com.sun.ws.rest.api.core.ResourceConfig

Packages that use ResourceConfig
com.sun.ws.rest.api.container Classes used when creating an instance of a container adaptor that supports the API for a particular container. 
com.sun.ws.rest.api.core Low-level interfaces and annotations used to create RESTful service resources. 
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.container.servlet   
 

Uses of ResourceConfig in com.sun.ws.rest.api.container
 

Methods in com.sun.ws.rest.api.container with parameters of type ResourceConfig
static
<A> A
ContainerFactory.createContainer(java.lang.Class<A> type, ResourceConfig resourceConfig)
          Create a container according to the class requested.
 

Uses of ResourceConfig in com.sun.ws.rest.api.core
 

Subclasses of ResourceConfig in com.sun.ws.rest.api.core
 class ApplicationConfigAdapter
          An extension of DefaultResourceConfig that adapts an instance of ApplicationConfig.
 class ClasspathResourceConfig
          A mutable implementation of DefaultResourceConfig that dynamically searches for root resource classes and providers in the paths declared by the property ClasspathResourceConfig.PROPERTY_CLASSPATH.
 class DefaultResourceConfig
          A mutable implementation of ResourceConfig that declares default values for features.
 class PackagesResourceConfig
          A mutable implementation of DefaultResourceConfig that dynamically searches for root resource classes given a set of package names.
 

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

Methods in com.sun.ws.rest.spi.container with parameters of type ResourceConfig
 T ContainerProvider.createContainer(java.lang.Class<T> type, ResourceConfig resourceConfig, WebApplication application)
          Create an container of type T.
 void WebApplication.initiate(ResourceConfig resourceConfig)
          Initiate the Web application.
 void WebApplication.initiate(ResourceConfig resourceConfig, ComponentProvider provider)
          Initiate the Web application.
 

Uses of ResourceConfig in com.sun.ws.rest.spi.container.servlet
 

Methods in com.sun.ws.rest.spi.container.servlet with parameters of type ResourceConfig
protected  void ServletContainer.configure(javax.servlet.ServletConfig sc, ResourceConfig rc, WebApplication wa)
          Configure the WebApplication.
protected  void ServletContainer.initiate(ResourceConfig rc, WebApplication wa)
          Initiate the WebApplication.