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

Packages that use Service
org.jboss.webbeans.bootstrap.api   
org.jboss.webbeans.bootstrap.api.helpers   
org.jboss.webbeans.bootstrap.spi   
org.jboss.webbeans.bootstrap.spi.helpers   
org.jboss.webbeans.context   
org.jboss.webbeans.ejb   
org.jboss.webbeans.ejb.spi   
org.jboss.webbeans.ejb.spi.helpers   
org.jboss.webbeans.jsf   
org.jboss.webbeans.messaging.spi   
org.jboss.webbeans.messaging.spi.helpers   
org.jboss.webbeans.metadata   
org.jboss.webbeans.persistence   
org.jboss.webbeans.persistence.spi   
org.jboss.webbeans.persistence.spi.helpers   
org.jboss.webbeans.resources   
org.jboss.webbeans.resources.spi   
org.jboss.webbeans.resources.spi.helpers   
org.jboss.webbeans.servlet   
org.jboss.webbeans.transaction.spi   
org.jboss.webbeans.ws.spi   
org.jboss.webbeans.ws.spi.helpers   
 

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

Subinterfaces of Service in org.jboss.webbeans.bootstrap.api
 interface Lifecycle
          Note Lifecycle is not complete, and the API may change
 

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

Methods in org.jboss.webbeans.bootstrap.api that return types with arguments of type Service
 java.util.Set<java.lang.Class<? extends Service>> Environment.getRequiredServices()
          The services to require for this environment
 java.util.Set<java.lang.Class<? extends Service>> Environments.getRequiredServices()
           
 

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

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

Uses of Service in org.jboss.webbeans.bootstrap.spi
 

Subinterfaces of Service in org.jboss.webbeans.bootstrap.spi
 interface WebBeanDiscovery
          A container should implement this interface to allow Web Beans to discover the beans to deploy
 

Uses of Service in org.jboss.webbeans.bootstrap.spi.helpers
 

Classes in org.jboss.webbeans.bootstrap.spi.helpers that implement Service
 class ForwardingWebBeanDiscovery
          An implementation of WebBeanDiscovery which forwards all its method calls to another WebBeanDiscovery}.
 

Uses of Service in org.jboss.webbeans.context
 

Classes in org.jboss.webbeans.context that implement Service
 class ApplicationContext
          The Application context
 class ContextLifecycle
          An implementation of the Web Beans lifecycle that supports restoring and destroying all the built in contexts
 class ConversationContext
          The conversation context
 class DependentContext
          The dependent context
 class RequestContext
          The request context
 class SessionContext
          The session context
 

Uses of Service in org.jboss.webbeans.ejb
 

Classes in org.jboss.webbeans.ejb that implement Service
 class EJBApiAbstraction
          Utility class for EJB classes etc.
 

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

Subinterfaces of Service in org.jboss.webbeans.ejb.spi
 interface EjbServices
          A container should implement this interface to allow Web Beans to resolve EJB and discover EJBs
 

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

Classes in org.jboss.webbeans.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.webbeans.jsf
 

Classes in org.jboss.webbeans.jsf that implement Service
 class JSFApiAbstraction
          Utility class for JSF related components, concepts etc.
 

Uses of Service in org.jboss.webbeans.messaging.spi
 

Subinterfaces of Service in org.jboss.webbeans.messaging.spi
 interface JmsServices
          A container should implement this interface to allow Web Beans to resolve Jms Services
 

Uses of Service in org.jboss.webbeans.messaging.spi.helpers
 

Classes in org.jboss.webbeans.messaging.spi.helpers that implement Service
 class ForwardingJmsServices
           
 

Uses of Service in org.jboss.webbeans.metadata
 

Classes in org.jboss.webbeans.metadata that implement Service
 class MetaDataCache
          Metadata singleton for holding EJB metadata, scope models etc.
 

Uses of Service in org.jboss.webbeans.persistence
 

Classes in org.jboss.webbeans.persistence that implement Service
 class DefaultEntityDiscovery
           
 class PersistenceApiAbstraction
           
 

Uses of Service in org.jboss.webbeans.persistence.spi
 

Subinterfaces of Service in org.jboss.webbeans.persistence.spi
 interface EntityDiscovery
          A container should implement this interface to replace portions or all of the built in entity discovery in Web Beans.
 interface JpaServices
          A container should implement this interface to allow the Web Beans RI to resolve JPA persistence units and discover entities
 

Uses of Service in org.jboss.webbeans.persistence.spi.helpers
 

Classes in org.jboss.webbeans.persistence.spi.helpers that implement Service
 class ForwardinEntityDiscovery
           
 class ForwardingJpaServices
          An implementation of JpaServices which forwards all its method calls to another JpaServices}.
 

Uses of Service in org.jboss.webbeans.resources
 

Classes in org.jboss.webbeans.resources that implement Service
 class ClassTransformer
           
 class DefaultResourceLoader
          A simple resource loader.
 

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

Subinterfaces of Service in org.jboss.webbeans.resources.spi
 interface ResourceLoader
          Resource loading/class creation services for Web Beans.
 interface ResourceServices
          A container should implement this interface to allow the Web Beans RI to resolve Resources
 

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

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

Uses of Service in org.jboss.webbeans.servlet
 

Classes in org.jboss.webbeans.servlet that implement Service
 class ServletApiAbstraction
          Abstraction for classes in the Servlet API
 

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

Subinterfaces of Service in org.jboss.webbeans.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.webbeans.ws.spi
 

Subinterfaces of Service in org.jboss.webbeans.ws.spi
 interface WebServices
          A container should implement this interface to allow Web Beans to resolve Web Services
 

Uses of Service in org.jboss.webbeans.ws.spi.helpers
 

Classes in org.jboss.webbeans.ws.spi.helpers that implement Service
 class ForwardingWebServices
           
 



Copyright © 2011. All Rights Reserved.