Uses of Interface
org.jboss.resteasy.spi.ResourceFactory
-
Packages that use ResourceFactory Package Description org.jboss.resteasy.core org.jboss.resteasy.plugins.server.resourcefactory org.jboss.resteasy.spi -
-
Uses of ResourceFactory in org.jboss.resteasy.core
Fields in org.jboss.resteasy.core declared as ResourceFactory Modifier and Type Field Description protected ResourceFactory
ResourceLocatorInvoker. resource
protected ResourceFactory
ResourceMethodInvoker. resource
Methods in org.jboss.resteasy.core with parameters of type ResourceFactory Modifier and Type Method Description void
ResourceMethodRegistry. addResourceFactory(ResourceFactory ref)
Bind an endpoint ResourceFactory.void
ResourceMethodRegistry. addResourceFactory(ResourceFactory ref, java.lang.String base)
ResourceFactory.getScannableClass() defines what class should be scanned for JAX-RS annotations.void
ResourceMethodRegistry. addResourceFactory(ResourceFactory ref, java.lang.String base, java.lang.Class<?> clazz)
ResourceFactory.getScannableClass() is not used, only the clazz parameter and not any implemented interfaces of the clazz parameter.void
ResourceMethodRegistry. addResourceFactory(ResourceFactory ref, java.lang.String base, java.lang.Class<?>[] classes)
ResourceFactory.getScannableClass() is not used, only the clazz parameter and not any implemented interfaces of the clazz parameter.void
ResourceMethodRegistry. addResourceFactory(ResourceFactory rf, java.lang.String base, ResourceClass resourceClass)
protected void
ResourceMethodRegistry. processMethod(ResourceFactory rf, java.lang.String base, ResourceLocator method)
protected void
ResourceMethodRegistry. register(ResourceFactory rf, java.lang.String base, ResourceClass resourceClass)
Constructors in org.jboss.resteasy.core with parameters of type ResourceFactory Constructor Description ResourceLocatorInvoker(ResourceFactory resource, InjectorFactory injector, ResteasyProviderFactory providerFactory, ResourceLocator locator)
ResourceMethodInvoker(ResourceMethod method, InjectorFactory injector, ResourceFactory resource, ResteasyProviderFactory providerFactory)
-
Uses of ResourceFactory in org.jboss.resteasy.plugins.server.resourcefactory
Classes in org.jboss.resteasy.plugins.server.resourcefactory that implement ResourceFactory Modifier and Type Class Description class
JndiComponentResourceFactory
Used for component jndi-based resources like EJBs.class
JndiResourceFactory
class
POJOResourceFactory
Allocates an instance of a class at each invocationclass
SingletonResource
VERY simple implementation that just returns the instance the SingleResource was created with -
Uses of ResourceFactory in org.jboss.resteasy.spi
Fields in org.jboss.resteasy.spi with type parameters of type ResourceFactory Modifier and Type Field Description protected java.util.List<ResourceFactory>
ResteasyDeployment. resourceFactories
Methods in org.jboss.resteasy.spi that return types with arguments of type ResourceFactory Modifier and Type Method Description java.util.List<ResourceFactory>
ResteasyDeployment. getResourceFactories()
Methods in org.jboss.resteasy.spi with parameters of type ResourceFactory Modifier and Type Method Description void
Registry. addResourceFactory(ResourceFactory ref)
Add a custom resource implementation endpoint.void
Registry. addResourceFactory(ResourceFactory ref, java.lang.String basePath)
Add a custom resource implementation endpoint.void
Registry. addResourceFactory(ResourceFactory ref, java.lang.String base, java.lang.Class<?> clazz)
ResourceFactory.getScannableClass() is not used, only the clazz parameter and not any implemented interfaces of the clazz parameter.void
Registry. addResourceFactory(ResourceFactory ref, java.lang.String base, java.lang.Class<?>[] classes)
void
Registry. addResourceFactory(ResourceFactory rf, java.lang.String base, ResourceClass resourceClass)
Method parameters in org.jboss.resteasy.spi with type arguments of type ResourceFactory Modifier and Type Method Description void
ResteasyDeployment. setResourceFactories(java.util.List<ResourceFactory> resourceFactories)
-