Uses of Class
com.sun.jersey.spi.service.ComponentProvider.Scope

Packages that use ComponentProvider.Scope
com.sun.jersey.spi.inject   
com.sun.jersey.spi.resource Classes that define the contract for a resource provider. 
com.sun.jersey.spi.service Classes used by the SPIs to support dynamic extensions. 
 

Uses of ComponentProvider.Scope in com.sun.jersey.spi.inject
 

Methods in com.sun.jersey.spi.inject that return ComponentProvider.Scope
 ComponentProvider.Scope SingletonTypeInjectableProvider.getScope()
           
 ComponentProvider.Scope InjectableProvider.getScope()
          Get the scope of the injectable provider.
 

Uses of ComponentProvider.Scope in com.sun.jersey.spi.resource
 

Methods in com.sun.jersey.spi.resource with parameters of type ComponentProvider.Scope
<A extends java.lang.annotation.Annotation,C>
Injectable
InjectableProviderContext.getInjectable(java.lang.Class<? extends java.lang.annotation.Annotation> ac, ComponentContext ic, A a, C c, ComponentProvider.Scope s)
          Get an injectable.
 

Method parameters in com.sun.jersey.spi.resource with type arguments of type ComponentProvider.Scope
<A extends java.lang.annotation.Annotation,C>
Injectable
InjectableProviderContext.getInjectable(java.lang.Class<? extends java.lang.annotation.Annotation> ac, ComponentContext ic, A a, C c, java.util.List<ComponentProvider.Scope> s)
          Get an injectable.
 

Constructors in com.sun.jersey.spi.resource with parameters of type ComponentProvider.Scope
ResourceClassInjector(InjectableProviderContext ipc, ComponentProvider.Scope s, AbstractResource resource)
          Create a new resource class injector.
 

Uses of ComponentProvider.Scope in com.sun.jersey.spi.service
 

Methods in com.sun.jersey.spi.service that return ComponentProvider.Scope
static ComponentProvider.Scope ComponentProvider.Scope.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ComponentProvider.Scope[] ComponentProvider.Scope.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in com.sun.jersey.spi.service with parameters of type ComponentProvider.Scope
<T> T
ComponentProvider.getInstance(ComponentContext cc, ComponentProvider.Scope scope, java.lang.Class<T> c)
          Get the instance of a class.
<T> T
ComponentProvider.getInstance(ComponentProvider.Scope scope, java.lang.Class<T> c)
          Get the instance of a class.
<T> T
ComponentProvider.getInstance(ComponentProvider.Scope scope, java.lang.reflect.Constructor<T> contructor, java.lang.Object[] parameters)
          Get the instance of a class using a constructor and a corresponding array of parameter values.