org.apache.openejb.jee
Interface JndiConsumer

All Known Subinterfaces:
EnterpriseBean, RemoteBean, WebCommon
All Known Implementing Classes:
Application, ApplicationClient, EntityBean, Interceptor, ManagedBean, MessageDrivenBean, SessionBean, SingletonBean, StatefulBean, StatelessBean, WebApp, WebFragment

public interface JndiConsumer

Interface for all components that have a java: jndi context or contribute to one such as the application. The getMap methods return maps keyed by normalized jndi name, that is any old-style entry is normalized to java:comp/env/ to match entries that are explicitly defined in a comp, module, app, or global context. The Refs themselves do not have normalized referenceNames.

Version:
$Rev: 1153396 $ $Date: 2011-08-03 08:58:40 +0000 (Wed, 03 Aug 2011) $

Method Summary
 Collection<DataSource> getDataSource()
           
 Map<String,DataSource> getDataSourceMap()
           
 Collection<EjbLocalRef> getEjbLocalRef()
           
 Map<String,EjbLocalRef> getEjbLocalRefMap()
           
 Collection<EjbRef> getEjbRef()
           
 Map<String,EjbRef> getEjbRefMap()
           
 Collection<EnvEntry> getEnvEntry()
           
 Map<String,EnvEntry> getEnvEntryMap()
           
 String getJndiConsumerName()
           
 Collection<MessageDestinationRef> getMessageDestinationRef()
           
 Map<String,MessageDestinationRef> getMessageDestinationRefMap()
           
 Collection<PersistenceContextRef> getPersistenceContextRef()
           
 Map<String,PersistenceContextRef> getPersistenceContextRefMap()
           
 Collection<PersistenceUnitRef> getPersistenceUnitRef()
           
 Map<String,PersistenceUnitRef> getPersistenceUnitRefMap()
           
 Collection<ResourceEnvRef> getResourceEnvRef()
           
 Map<String,ResourceEnvRef> getResourceEnvRefMap()
           
 Collection<ResourceRef> getResourceRef()
           
 Map<String,ResourceRef> getResourceRefMap()
           
 Collection<ServiceRef> getServiceRef()
           
 Map<String,ServiceRef> getServiceRefMap()
           
 

Method Detail

getJndiConsumerName

String getJndiConsumerName()

getEnvEntry

Collection<EnvEntry> getEnvEntry()

getEnvEntryMap

Map<String,EnvEntry> getEnvEntryMap()

getEjbRef

Collection<EjbRef> getEjbRef()

getEjbRefMap

Map<String,EjbRef> getEjbRefMap()

getEjbLocalRef

Collection<EjbLocalRef> getEjbLocalRef()

getEjbLocalRefMap

Map<String,EjbLocalRef> getEjbLocalRefMap()

getServiceRef

Collection<ServiceRef> getServiceRef()

getServiceRefMap

Map<String,ServiceRef> getServiceRefMap()

getResourceRef

Collection<ResourceRef> getResourceRef()

getResourceRefMap

Map<String,ResourceRef> getResourceRefMap()

getResourceEnvRef

Collection<ResourceEnvRef> getResourceEnvRef()

getResourceEnvRefMap

Map<String,ResourceEnvRef> getResourceEnvRefMap()

getMessageDestinationRef

Collection<MessageDestinationRef> getMessageDestinationRef()

getMessageDestinationRefMap

Map<String,MessageDestinationRef> getMessageDestinationRefMap()

getPersistenceContextRef

Collection<PersistenceContextRef> getPersistenceContextRef()

getPersistenceContextRefMap

Map<String,PersistenceContextRef> getPersistenceContextRefMap()

getPersistenceUnitRef

Collection<PersistenceUnitRef> getPersistenceUnitRef()

getPersistenceUnitRefMap

Map<String,PersistenceUnitRef> getPersistenceUnitRefMap()

getDataSource

Collection<DataSource> getDataSource()

getDataSourceMap

Map<String,DataSource> getDataSourceMap()


Copyright © 1999-2011 The Apache Software Foundation. All Rights Reserved.