Uses of Interface
org.jboss.weld.bootstrap.api.Service

Packages that use Service
org.jboss.weld.bootstrap.api   
org.jboss.weld.bootstrap.api.helpers   
org.jboss.weld.ejb.spi   
org.jboss.weld.ejb.spi.helpers   
org.jboss.weld.injection.spi   
org.jboss.weld.injection.spi.helpers   
org.jboss.weld.manager.api   
org.jboss.weld.resources.spi   
org.jboss.weld.resources.spi.helpers   
org.jboss.weld.security.spi   
org.jboss.weld.serialization.spi   
org.jboss.weld.transaction.spi   
org.jboss.weld.validation.spi   
 

Uses of Service in org.jboss.weld.bootstrap.api
 

Methods in org.jboss.weld.bootstrap.api with type parameters of type Service
<S extends Service>
void
ServiceRegistry.add(Class<S> type, S service)
          Add a service
<S extends Service>
boolean
ServiceRegistry.contains(Class<S> type)
          Check if a service is registered
<S extends Service>
S
ServiceRegistry.get(Class<S> type)
          Retrieve a service implementation
 

Methods in org.jboss.weld.bootstrap.api that return types with arguments of type Service
 Set<Map.Entry<Class<? extends Service>,Service>> ServiceRegistry.entrySet()
           
 Set<Map.Entry<Class<? extends Service>,Service>> ServiceRegistry.entrySet()
           
 Set<Class<? extends Service>> Environment.getRequiredBeanDeploymentArchiveServices()
           
 Set<Class<? extends Service>> Environments.getRequiredBeanDeploymentArchiveServices()
           
 Set<Class<? extends Service>> Environment.getRequiredDeploymentServices()
          The deployment scoped services required for this environment
 Set<Class<? extends Service>> Environments.getRequiredDeploymentServices()
           
 

Method parameters in org.jboss.weld.bootstrap.api with type arguments of type Service
 void ServiceRegistry.addAll(Collection<Map.Entry<Class<? extends Service>,Service>> services)
          Add services
 void ServiceRegistry.addAll(Collection<Map.Entry<Class<? extends Service>,Service>> services)
          Add services
 

Uses of Service in org.jboss.weld.bootstrap.api.helpers
 

Methods in org.jboss.weld.bootstrap.api.helpers with type parameters of type Service
<S extends Service>
void
SimpleServiceRegistry.add(Class<S> type, S service)
           
<S extends Service>
void
ForwardingServiceRegistry.add(Class<S> type, S service)
           
<S extends Service>
boolean
SimpleServiceRegistry.contains(Class<S> type)
           
<S extends Service>
boolean
ForwardingServiceRegistry.contains(Class<S> type)
           
<S extends Service>
S
SimpleServiceRegistry.get(Class<S> type)
           
<S extends Service>
S
ForwardingServiceRegistry.get(Class<S> type)
           
 

Methods in org.jboss.weld.bootstrap.api.helpers that return types with arguments of type Service
 Set<Map.Entry<Class<? extends Service>,Service>> SimpleServiceRegistry.entrySet()
           
 Set<Map.Entry<Class<? extends Service>,Service>> SimpleServiceRegistry.entrySet()
           
 Set<Map.Entry<Class<? extends Service>,Service>> ForwardingServiceRegistry.entrySet()
           
 Set<Map.Entry<Class<? extends Service>,Service>> ForwardingServiceRegistry.entrySet()
           
protected  Map<Class<? extends Service>,Service> SimpleServiceRegistry.get()
           
protected  Map<Class<? extends Service>,Service> SimpleServiceRegistry.get()
           
 Iterator<Service> SimpleServiceRegistry.iterator()
           
 Iterator<Service> ForwardingServiceRegistry.iterator()
           
 

Method parameters in org.jboss.weld.bootstrap.api.helpers with type arguments of type Service
 void SimpleServiceRegistry.addAll(Collection<Map.Entry<Class<? extends Service>,Service>> services)
           
 void SimpleServiceRegistry.addAll(Collection<Map.Entry<Class<? extends Service>,Service>> services)
           
 void ForwardingServiceRegistry.addAll(Collection<Map.Entry<Class<? extends Service>,Service>> services)
           
 void ForwardingServiceRegistry.addAll(Collection<Map.Entry<Class<? extends Service>,Service>> services)
           
 

Uses of Service in org.jboss.weld.ejb.spi
 

Subinterfaces of Service in org.jboss.weld.ejb.spi
 interface EjbServices
          A container should implement this interface to allow Weld to resolve EJB and discover EJBs EjbServices is a per-deployment service.
 

Uses of Service in org.jboss.weld.ejb.spi.helpers
 

Classes in org.jboss.weld.ejb.spi.helpers that implement Service
 class ForwardingEjbServices
          An implementation of EjbServices which forwards all its method calls to another EjbServices}.
 

Uses of Service in org.jboss.weld.injection.spi
 

Subinterfaces of Service in org.jboss.weld.injection.spi
 interface EjbInjectionServices
          A container should implement this interface to allow Weld to resolve EJB.
 interface InjectionServices
          Provides callbacks to the container when Weld performs injection on an InjectionTarget, managed bean or session bean This service may be used to provide EE-style injection.
 interface JpaInjectionServices
          A container should implement this interface to allow the Weld RI to resolve JPA persistence units and discover entities JpaInjectionServices is a per-module service.
 interface ResourceInjectionServices
          A container should implement this interface to allow the Weld to resolve Resources ResourceInjectionServices is per-module service.
 

Uses of Service in org.jboss.weld.injection.spi.helpers
 

Classes in org.jboss.weld.injection.spi.helpers that implement Service
 class AbstractResourceServices
           
 class ForwardingJpaInjectionServices
          An implementation of JpaInjectionServices which forwards all its method calls to another JpaInjectionServices}.
 class ForwardingResourceInjectionServices
           
 

Uses of Service in org.jboss.weld.manager.api
 

Subinterfaces of Service in org.jboss.weld.manager.api
 interface ExecutorServices
          Allows a custom TaskExecutor to be provided by the container.
 

Uses of Service in org.jboss.weld.resources.spi
 

Subinterfaces of Service in org.jboss.weld.resources.spi
 interface ResourceLoader
          Resource loading/class creation services for Weld.
 interface ScheduledExecutorServiceFactory
           
 

Uses of Service in org.jboss.weld.resources.spi.helpers
 

Classes in org.jboss.weld.resources.spi.helpers that implement Service
 class ForwardingResourceLoader
          An implementation of ResourceLoader which forwards all its method calls to another ResourceLoader}.
 

Uses of Service in org.jboss.weld.security.spi
 

Subinterfaces of Service in org.jboss.weld.security.spi
 interface SecurityServices
          Responsible for accessing security related functionality the environment can provide.
 

Uses of Service in org.jboss.weld.serialization.spi
 

Subinterfaces of Service in org.jboss.weld.serialization.spi
 interface ContextualStore
          Application wide contextual identifier service which allows a serializable reference to a contextual to be obtained, and the contextual to be returned for a given id.
 interface ProxyServices
           Support services related to proxy generation and serialization which are required to be implemented by all containers.
 

Uses of Service in org.jboss.weld.transaction.spi
 

Subinterfaces of Service in org.jboss.weld.transaction.spi
 interface TransactionServices
           The container must implement the services related to transactional behavior used in JSR-299, if that behavior is going to be used.
 

Uses of Service in org.jboss.weld.validation.spi
 

Subinterfaces of Service in org.jboss.weld.validation.spi
 interface ValidationServices
           Responsible for accessing Bean Validation functionality the environment may provide.
 



Copyright © 2013 Seam Framework. All Rights Reserved.