|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ResourceConfig in com.sun.jersey.api.container |
---|
Methods in com.sun.jersey.api.container with parameters of type ResourceConfig | ||
---|---|---|
static
|
ContainerFactory.createContainer(java.lang.Class<A> type,
ResourceConfig resourceConfig)
Create a container according to the class requested. |
|
static
|
ContainerFactory.createContainer(java.lang.Class<A> type,
ResourceConfig resourceConfig,
IoCComponentProviderFactory factory)
Create a container according to the class requested. |
Uses of ResourceConfig in com.sun.jersey.api.container.grizzly |
---|
Methods in com.sun.jersey.api.container.grizzly with parameters of type ResourceConfig | |
---|---|
static com.sun.grizzly.http.SelectorThread |
GrizzlyServerFactory.create(java.lang.String u,
ResourceConfig rc)
Create a SelectorThread that registers an Adapter that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static com.sun.grizzly.http.SelectorThread |
GrizzlyServerFactory.create(java.lang.String u,
ResourceConfig rc,
IoCComponentProviderFactory factory)
Create a SelectorThread that registers an Adapter that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static com.sun.grizzly.http.SelectorThread |
GrizzlyServerFactory.create(java.net.URI u,
ResourceConfig rc)
Create a SelectorThread that registers an Adapter that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static com.sun.grizzly.http.SelectorThread |
GrizzlyServerFactory.create(java.net.URI u,
ResourceConfig rc,
IoCComponentProviderFactory factory)
Create a SelectorThread that registers an Adapter that
in turn manages all root resource and provder classes declared by the
resource configuration. |
Uses of ResourceConfig in com.sun.jersey.api.container.httpserver |
---|
Methods in com.sun.jersey.api.container.httpserver with parameters of type ResourceConfig | |
---|---|
static com.sun.net.httpserver.HttpServer |
HttpServerFactory.create(java.lang.String u,
ResourceConfig rc)
Create a HttpServer that registers a HttpHandler that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static com.sun.net.httpserver.HttpServer |
HttpServerFactory.create(java.lang.String u,
ResourceConfig rc,
IoCComponentProviderFactory factory)
Create a HttpServer that registers a HttpHandler that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static com.sun.net.httpserver.HttpServer |
HttpServerFactory.create(java.net.URI u,
ResourceConfig rc)
Create a HttpServer that registers a HttpHandler that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static com.sun.net.httpserver.HttpServer |
HttpServerFactory.create(java.net.URI u,
ResourceConfig rc,
IoCComponentProviderFactory factory)
Create a HttpServer that registers a HttpHandler that
in turn manages all root resource and provder classes declared by the
resource configuration. |
Uses of ResourceConfig in com.sun.jersey.api.core |
---|
Subclasses of ResourceConfig in com.sun.jersey.api.core | |
---|---|
class |
ApplicationAdapter
An extension of DefaultResourceConfig that adapts an instance
of Application . |
class |
ClassNamesResourceConfig
A mutable implementation of DefaultResourceConfig that explicitly
declares for root resource and provider classes. |
class |
ClasspathResourceConfig
A mutable implementation of DefaultResourceConfig that dynamically
searches for root resource and provider classes in the files and directories
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 and provider classes in a given a set of
declared package and in all (if any) sub-packages of those declared packages. |
class |
ScanningResourceConfig
A resource configuration that performs scannning to find root resource and provider classes. |
class |
WebAppResourceConfig
A mutable implementation of DefaultResourceConfig that dynamically
searches for root resource and provider classes in the Web application
resource paths declared by the property
ClasspathResourceConfig.PROPERTY_CLASSPATH . |
Methods in com.sun.jersey.api.core that return ResourceConfig | |
---|---|
ResourceConfig |
ResourceConfig.clone()
Clone this resource configuration. |
Methods in com.sun.jersey.api.core with parameters of type ResourceConfig | |
---|---|
void |
ResourceConfigurator.configure(ResourceConfig config)
Configure the resource configuration. |
Uses of ResourceConfig in com.sun.jersey.api.wadl.config |
---|
Methods in com.sun.jersey.api.wadl.config with parameters of type ResourceConfig | |
---|---|
static WadlGenerator |
WadlGeneratorConfigLoader.loadWadlGeneratorsFromConfig(ResourceConfig resourceConfig)
Load the WadlGeneratorConfig from the provided ResourceConfig using the
property PROPERTY_WADL_GENERATOR_CONFIG . |
Uses of ResourceConfig in com.sun.jersey.guice.spi.container |
---|
Constructors in com.sun.jersey.guice.spi.container with parameters of type ResourceConfig | |
---|---|
GuiceComponentProviderFactory(ResourceConfig config,
com.google.inject.Injector injector)
Creates a new GuiceComponentProviderFactory. |
Uses of ResourceConfig in com.sun.jersey.guice.spi.container.servlet |
---|
Methods in com.sun.jersey.guice.spi.container.servlet that return ResourceConfig | |
---|---|
protected ResourceConfig |
GuiceContainer.getDefaultResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props,
WebConfig webConfig)
|
Methods in com.sun.jersey.guice.spi.container.servlet with parameters of type ResourceConfig | |
---|---|
protected void |
GuiceContainer.initiate(ResourceConfig config,
WebApplication webapp)
|
Constructors in com.sun.jersey.guice.spi.container.servlet with parameters of type ResourceConfig | |
---|---|
GuiceContainer.ServletGuiceComponentProviderFactory(ResourceConfig config,
com.google.inject.Injector injector)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.application |
---|
Subclasses of ResourceConfig in com.sun.jersey.server.impl.application | |
---|---|
class |
DeferredResourceConfig
|
Methods in com.sun.jersey.server.impl.application with parameters of type ResourceConfig | |
---|---|
void |
WebApplicationImpl.initiate(ResourceConfig resourceConfig)
|
void |
WebApplicationImpl.initiate(ResourceConfig rc,
IoCComponentProviderFactory _provider)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.component |
---|
Constructors in com.sun.jersey.server.impl.component with parameters of type ResourceConfig | |
---|---|
IoCResourceFactory(ResourceConfig config,
ServerInjectableProviderContext ipc,
java.util.List<IoCComponentProviderFactory> factories)
|
|
ResourceFactory(ResourceConfig config,
ServerInjectableProviderContext ipc)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.container.filter |
---|
Constructors in com.sun.jersey.server.impl.container.filter with parameters of type ResourceConfig | |
---|---|
FilterFactory(ProviderServices providerServices,
ResourceConfig resourceConfig)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.container.grizzly |
---|
Methods in com.sun.jersey.server.impl.container.grizzly with parameters of type ResourceConfig | |
---|---|
com.sun.grizzly.tcp.Adapter |
GrizzlyContainerProvider.createContainer(java.lang.Class<com.sun.grizzly.tcp.Adapter> type,
ResourceConfig resourceConfig,
WebApplication application)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.container.httpserver |
---|
Methods in com.sun.jersey.server.impl.container.httpserver with parameters of type ResourceConfig | |
---|---|
com.sun.net.httpserver.HttpHandler |
HttpHandlerContainerProvider.createContainer(java.lang.Class<com.sun.net.httpserver.HttpHandler> type,
ResourceConfig resourceConfig,
WebApplication application)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.container.servlet |
---|
Methods in com.sun.jersey.server.impl.container.servlet with parameters of type ResourceConfig | |
---|---|
protected void |
ServletAdaptor.configure(javax.servlet.ServletConfig servletConfig,
ResourceConfig rc,
WebApplication wa)
|
Constructors in com.sun.jersey.server.impl.container.servlet with parameters of type ResourceConfig | |
---|---|
JSPTemplateProcessor(ResourceConfig resourceConfig)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.ejb |
---|
Methods in com.sun.jersey.server.impl.ejb with parameters of type ResourceConfig | |
---|---|
static void |
EJBComponentProviderFactoryInitilizer.initialize(ResourceConfig rc)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.jcdi |
---|
Methods in com.sun.jersey.server.impl.jcdi with parameters of type ResourceConfig | |
---|---|
static void |
JCDIComponentProviderFactoryInitializer.initialize(ResourceConfig rc)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.managedbeans |
---|
Methods in com.sun.jersey.server.impl.managedbeans with parameters of type ResourceConfig | |
---|---|
static void |
ManagedBeanComponentProviderFactoryInitilizer.initialize(ResourceConfig rc)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.model |
---|
Constructors in com.sun.jersey.server.impl.model with parameters of type ResourceConfig | |
---|---|
ResourceClass(ResourceConfig config,
ResourceMethodDispatcherFactory df,
ServerInjectableProviderContext injectableContext,
FilterFactory ff,
WadlFactory wadlFactory,
AbstractResource resource)
|
Uses of ResourceConfig in com.sun.jersey.server.impl.wadl |
---|
Constructors in com.sun.jersey.server.impl.wadl with parameters of type ResourceConfig | |
---|---|
WadlFactory(ResourceConfig resourceConfig)
|
Uses of ResourceConfig in com.sun.jersey.simple.container |
---|
Methods in com.sun.jersey.simple.container with parameters of type ResourceConfig | |
---|---|
static java.io.Closeable |
SimpleServerFactory.create(java.lang.String address,
ResourceConfig config)
Create a Closeable that registers an Container that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static java.io.Closeable |
SimpleServerFactory.create(java.lang.String address,
ResourceConfig config,
IoCComponentProviderFactory factory)
Create a Closeable that registers an Container that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static java.io.Closeable |
SimpleServerFactory.create(java.lang.String address,
javax.net.ssl.SSLContext context,
ResourceConfig config)
Create a Closeable that registers an Container that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static java.io.Closeable |
SimpleServerFactory.create(java.lang.String address,
javax.net.ssl.SSLContext context,
ResourceConfig config,
IoCComponentProviderFactory factory)
Create a Closeable that registers an Container that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static java.io.Closeable |
SimpleServerFactory.create(java.net.URI address,
ResourceConfig config)
Create a Closeable that registers an Container that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static java.io.Closeable |
SimpleServerFactory.create(java.net.URI address,
ResourceConfig config,
IoCComponentProviderFactory factory)
Create a Closeable that registers an Container that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static java.io.Closeable |
SimpleServerFactory.create(java.net.URI address,
javax.net.ssl.SSLContext context,
ResourceConfig config)
Create a Closeable that registers an Container that
in turn manages all root resource and provder classes declared by the
resource configuration. |
static java.io.Closeable |
SimpleServerFactory.create(java.net.URI address,
javax.net.ssl.SSLContext context,
ResourceConfig config,
IoCComponentProviderFactory factory)
Create a Closeable that registers an Container that
in turn manages all root resource and provder classes declared by the
resource configuration. |
Uses of ResourceConfig in com.sun.jersey.simple.impl.container |
---|
Methods in com.sun.jersey.simple.impl.container with parameters of type ResourceConfig | |
---|---|
org.simpleframework.http.core.Container |
SimpleContainerProvider.createContainer(java.lang.Class<org.simpleframework.http.core.Container> type,
ResourceConfig resourceConfig,
WebApplication application)
|
Uses of ResourceConfig in com.sun.jersey.spi.container |
---|
Methods in com.sun.jersey.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,
IoCComponentProviderFactory provider)
Initiate the Web application. |
Uses of ResourceConfig in com.sun.jersey.spi.container.servlet |
---|
Methods in com.sun.jersey.spi.container.servlet that return ResourceConfig | |
---|---|
ResourceConfig |
WebConfig.getDefaultResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props)
Get the default ResourceConfig . |
protected ResourceConfig |
ServletContainer.getDefaultResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props,
javax.servlet.ServletConfig servletConfig)
Deprecated. methods should implement ServletContainer.getDefaultResourceConfig(java.util.Map, com.sun.jersey.spi.container.servlet.WebConfig) . |
protected ResourceConfig |
WebComponent.getDefaultResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props,
WebConfig wc)
Get the default resource configuration if one is not declared in the web.xml. |
protected ResourceConfig |
ServletContainer.getDefaultResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props,
WebConfig wc)
Get the default resource configuration if one is not declared in the web.xml. |
ResourceConfig |
WebComponent.getResourceConfig()
Get the resource configuration. |
Methods in com.sun.jersey.spi.container.servlet with parameters of type ResourceConfig | |
---|---|
protected void |
ServletContainer.configure(javax.servlet.FilterConfig fc,
ResourceConfig rc,
WebApplication wa)
Configure the ResourceConfig for a Filter. |
protected void |
ServletContainer.configure(javax.servlet.ServletConfig sc,
ResourceConfig rc,
WebApplication wa)
Configure the ResourceConfig for a Servlet. |
protected void |
WebComponent.configure(WebConfig wc,
ResourceConfig rc,
WebApplication wa)
Configure the ResourceConfig . |
protected void |
ServletContainer.configure(WebConfig wc,
ResourceConfig rc,
WebApplication wa)
Configure the ResourceConfig . |
protected void |
WebComponent.initiate(ResourceConfig rc,
WebApplication wa)
Initiate the WebApplication . |
protected void |
ServletContainer.initiate(ResourceConfig rc,
WebApplication wa)
Initiate the WebApplication . |
Uses of ResourceConfig in com.sun.jersey.spi.spring.container |
---|
Constructors in com.sun.jersey.spi.spring.container with parameters of type ResourceConfig | |
---|---|
SpringComponentProviderFactory(ResourceConfig rc,
org.springframework.context.ConfigurableApplicationContext springContext)
|
Uses of ResourceConfig in com.sun.jersey.spi.spring.container.servlet |
---|
Methods in com.sun.jersey.spi.spring.container.servlet that return ResourceConfig | |
---|---|
protected ResourceConfig |
SpringServlet.getDefaultResourceConfig(java.util.Map<java.lang.String,java.lang.Object> props,
WebConfig webConfig)
|
Methods in com.sun.jersey.spi.spring.container.servlet with parameters of type ResourceConfig | |
---|---|
protected void |
SpringServlet.initiate(ResourceConfig rc,
WebApplication wa)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |