| org.objectweb.sampleCluster2.ejb.MyEntityLocalHome
MyEntityLocalHome | public interface MyEntityLocalHome extends javax.ejb.EJBLocalHome(Code) | | Local interface for the entity bean
author: goebelg |
create | MyEntityLocal create(String number) throws javax.ejb.CreateException(Code) | | Creation of the entity bean
Parameters: number - the primary key -> date.getTime() as string of creation the entity bean throws: javax.ejb.CreateException - if creation fails |
findByPrimaryKey | MyEntityLocal findByPrimaryKey(Object primaryKey) throws javax.ejb.FinderException(Code) | | Search for a record with the primary key. Indicate the time of the creation as pk.
Parameters: primaryKey - the primary key to look for the entity bean throws: javax.ejb.FinderException - if not existing |
|
|