Package org.superbiz.injection

Interface Summary
DataReaderLocal This is an EJB 3 local business interface A local business interface may be annotated with the @Local annotation, but it's optional.
DataReaderRemote This is an EJB 3 remote business interface A remote business interface must be annotated with the @Remote annotation
DataStoreLocal This is an EJB 3 local business interface A local business interface may be annotated with the @Local annotation, but it's optional.
DataStoreRemote This is an EJB 3 remote business interface A remote business interface must be annotated with the @Remote annotation
Invoice  
Movies  
PurchaseOrder  
 

Class Summary
DataReaderImpl This is an EJB 3 style pojo stateless session bean Every stateless session bean implementation must be annotated using the annotation @Stateless This EJB has 2 business interfaces: DataReaderRemote, a remote business interface, and DataReaderLocal, a local business interface The instance variables 'dataStoreRemote' is annotated with the @EJB annotation: this means that the application server, at runtime, will inject in this instance variable a reference to the EJB DataStoreRemote The instance variables 'dataStoreLocal' is annotated with the @EJB annotation: this means that the application server, at runtime, will inject in this instance variable a reference to the EJB DataStoreLocal
DataStoreImpl This is an EJB 3 style pojo stateless session bean Every stateless session bean implementation must be annotated using the annotation @Stateless This EJB has 2 business interfaces: DataStoreRemote, a remote business interface, and DataStoreLocal, a local business interface
InvoiceBean This example demostrates the use of the injection of environment entries using Resource annotation.
LineItem  
Movie  
MoviesImpl  
PurchaseOrderBean This example demostrates the use of the injection of environment entries using Resource annotation.
 

Exception Summary
TooManyItemsException  
 



Copyright © 1999-2011 The Apache OpenEJB development community. All Rights Reserved.