Uses of Class
com.sun.jersey.core.spi.component.ComponentScope

Packages that use ComponentScope
com.sun.jersey.atom.abdera.impl.provider.injectable   
com.sun.jersey.core.impl.provider.xml   
com.sun.jersey.core.spi.component Provides support for components. 
com.sun.jersey.core.spi.component.ioc Provides support for IoC-based components. 
com.sun.jersey.core.spi.factory Provides support for factories of particular component types. 
com.sun.jersey.guice.spi.container Provides support for Guice-based applications. 
com.sun.jersey.guice.spi.container.servlet Provides support for Guice-based Web applications. 
com.sun.jersey.multipart.impl   
com.sun.jersey.server.impl.application   
com.sun.jersey.server.impl.component   
com.sun.jersey.server.impl.container.servlet   
com.sun.jersey.server.impl.inject   
com.sun.jersey.server.impl.model.parameter   
com.sun.jersey.server.impl.resource   
com.sun.jersey.server.spi.component Provides support for components that are resource classes. 
com.sun.jersey.spi.inject Provides support for injection onto resource and provider classes. 
 

Uses of ComponentScope in com.sun.jersey.atom.abdera.impl.provider.injectable
 

Methods in com.sun.jersey.atom.abdera.impl.provider.injectable that return ComponentScope
 ComponentScope ContentHelperProvider.getScope()
           
 

Uses of ComponentScope in com.sun.jersey.core.impl.provider.xml
 

Methods in com.sun.jersey.core.impl.provider.xml that return ComponentScope
 ComponentScope ThreadLocalSingletonContextProvider.getScope()
           
 ComponentScope LazySingletonContextProvider.getScope()
           
 

Uses of ComponentScope in com.sun.jersey.core.spi.component
 

Fields in com.sun.jersey.core.spi.component with type parameters of type ComponentScope
static java.util.List<ComponentScope> ComponentScope.PERREQUEST_UNDEFINED
          A immutable list comprising of the scopes PerRequest and Undefined, in that order.
static java.util.List<ComponentScope> ComponentScope.PERREQUEST_UNDEFINED_SINGLETON
          A immutable list comprising of the scopes PerRequest, Undefined and Singleton, in that order.
static java.util.List<ComponentScope> ComponentScope.UNDEFINED_SINGLETON
          A immutable list comprising of the scopes Undefined and Singleton, in that order.
 

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

Uses of ComponentScope in com.sun.jersey.core.spi.component.ioc
 

Methods in com.sun.jersey.core.spi.component.ioc that return ComponentScope
 ComponentScope IoCFullyManagedComponentProvider.getScope()
          Get the scope.
 ComponentScope IoCManagedComponentProvider.getScope()
          Get the component scope.
 ComponentScope IoCComponentProcessorFactory.getScope(java.lang.Class c)
          Get the scope of the component, if that component is managed by the Jersey runtime.
 

Methods in com.sun.jersey.core.spi.component.ioc with parameters of type ComponentScope
 IoCComponentProcessor IoCComponentProcessorFactory.get(java.lang.Class c, ComponentScope scope)
          Get a IoCComponentProcessor instance given a class and scope.
 

Uses of ComponentScope in com.sun.jersey.core.spi.factory
 

Methods in com.sun.jersey.core.spi.factory with parameters of type ComponentScope
<A extends java.lang.annotation.Annotation,C>
Injectable
InjectableProviderFactory.getInjectable(java.lang.Class<? extends java.lang.annotation.Annotation> ac, ComponentContext ic, A a, C c, ComponentScope s)
           
 boolean InjectableProviderFactory.isInjectableProviderRegistered(java.lang.Class<? extends java.lang.annotation.Annotation> ac, java.lang.Class<?> cc, ComponentScope s)
           
 

Method parameters in com.sun.jersey.core.spi.factory with type arguments of type ComponentScope
<A extends java.lang.annotation.Annotation,C>
Injectable
InjectableProviderFactory.getInjectable(java.lang.Class<? extends java.lang.annotation.Annotation> ac, ComponentContext ic, A a, C c, java.util.List<ComponentScope> ls)
           
<A extends java.lang.annotation.Annotation,C>
InjectableProviderContext.InjectableScopePair
InjectableProviderFactory.getInjectableWithScope(java.lang.Class<? extends java.lang.annotation.Annotation> ac, ComponentContext ic, A a, C c, java.util.List<ComponentScope> ls)
           
 

Uses of ComponentScope in com.sun.jersey.guice.spi.container
 

Methods in com.sun.jersey.guice.spi.container that return types with arguments of type ComponentScope
 java.util.Map<com.google.inject.Scope,ComponentScope> GuiceComponentProviderFactory.createScopeMap()
          Maps a Guice scope to a Jersey scope.
 

Uses of ComponentScope in com.sun.jersey.guice.spi.container.servlet
 

Methods in com.sun.jersey.guice.spi.container.servlet that return types with arguments of type ComponentScope
 java.util.Map<com.google.inject.Scope,ComponentScope> GuiceContainer.ServletGuiceComponentProviderFactory.createScopeMap()
           
 

Uses of ComponentScope in com.sun.jersey.multipart.impl
 

Methods in com.sun.jersey.multipart.impl that return ComponentScope
 ComponentScope MultiPartConfigProvider.getScope()
           
 

Uses of ComponentScope in com.sun.jersey.server.impl.application
 

Methods in com.sun.jersey.server.impl.application that return ComponentScope
 ComponentScope CloseableServiceFactory.getScope()
           
 

Uses of ComponentScope in com.sun.jersey.server.impl.component
 

Methods in com.sun.jersey.server.impl.component that return ComponentScope
 ComponentScope ResourceFactory.getScope(java.lang.Class c)
           
 

Uses of ComponentScope in com.sun.jersey.server.impl.container.servlet
 

Methods in com.sun.jersey.server.impl.container.servlet that return ComponentScope
 ComponentScope PerSessionFactory.getScope(java.lang.Class c)
           
 

Uses of ComponentScope in com.sun.jersey.server.impl.inject
 

Methods in com.sun.jersey.server.impl.inject with parameters of type ComponentScope
 java.util.List<Injectable> ServerInjectableProviderContext.getInjectable(java.util.List<Parameter> ps, ComponentScope s)
          Get a list of injectable given a list of parameter.
 java.util.List<Injectable> ServerInjectableProviderFactory.getInjectable(java.util.List<Parameter> ps, ComponentScope s)
           
 Injectable ServerInjectableProviderContext.getInjectable(Parameter p, ComponentScope s)
          Get an injectable given a parameter.
 Injectable ServerInjectableProviderFactory.getInjectable(Parameter p, ComponentScope s)
           
 InjectableProviderContext.InjectableScopePair ServerInjectableProviderContext.getInjectableiWithScope(Parameter p, ComponentScope s)
          Get an injectable given a parameter.
 InjectableProviderContext.InjectableScopePair ServerInjectableProviderFactory.getInjectableiWithScope(Parameter p, ComponentScope s)
           
 

Uses of ComponentScope in com.sun.jersey.server.impl.model.parameter
 

Methods in com.sun.jersey.server.impl.model.parameter that return ComponentScope
 ComponentScope BaseParamInjectableProvider.getScope()
           
 ComponentScope HttpContextInjectableProvider.getScope()
           
 

Uses of ComponentScope in com.sun.jersey.server.impl.resource
 

Methods in com.sun.jersey.server.impl.resource that return ComponentScope
 ComponentScope PerRequestFactory.getScope(java.lang.Class c)
           
 ComponentScope SingletonFactory.getScope(java.lang.Class c)
           
 

Uses of ComponentScope in com.sun.jersey.server.spi.component
 

Methods in com.sun.jersey.server.spi.component that return ComponentScope
 ComponentScope ResourceComponentProvider.getScope()
          Get the scope.
 ComponentScope ResourceComponentProviderFactory.getScope(java.lang.Class c)
          Get the scope of the resource class.
 

Constructors in com.sun.jersey.server.spi.component with parameters of type ComponentScope
ResourceComponentConstructor(ServerInjectableProviderContext sipc, ComponentScope scope, AbstractResource ar)
           
ResourceComponentInjector(ServerInjectableProviderContext ipc, ComponentScope s, AbstractResource resource)
          Create a new resource component injector.
 

Uses of ComponentScope in com.sun.jersey.spi.inject
 

Fields in com.sun.jersey.spi.inject declared as ComponentScope
 ComponentScope InjectableProviderContext.InjectableScopePair.cs
           
 

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

Methods in com.sun.jersey.spi.inject with parameters of type ComponentScope
<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, ComponentScope s)
          Get an injectable.
 boolean InjectableProviderContext.isInjectableProviderRegistered(java.lang.Class<? extends java.lang.annotation.Annotation> ac, java.lang.Class<?> cc, ComponentScope s)
          Check if one or more injectable provider is registered to process an anotation and a context type for a given scope.
 

Method parameters in com.sun.jersey.spi.inject with type arguments of type ComponentScope
<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<ComponentScope> ls)
          Get an injectable.
<A extends java.lang.annotation.Annotation,C>
InjectableProviderContext.InjectableScopePair
InjectableProviderContext.getInjectableWithScope(java.lang.Class<? extends java.lang.annotation.Annotation> ac, ComponentContext ic, A a, C c, java.util.List<ComponentScope> ls)
          Get an injectable.
 

Constructors in com.sun.jersey.spi.inject with parameters of type ComponentScope
InjectableProviderContext.InjectableScopePair(Injectable i, ComponentScope cs)
           
 



Copyright © 2011 Sun Microsystems, Inc. All Rights Reserved.