| |
|
| java.lang.Object org.objectweb.sampleCluster2.ejb.MyEntitySLR
MyEntitySLR | abstract public class MyEntitySLR implements javax.ejb.EntityBean(Code) | | Implementation of the entity bean
author: goebelg |
ejbActivate | public void ejbActivate()(Code) | | Activation of the ejb
|
ejbCreate | public Object ejbCreate(String number) throws CreateException(Code) | | Creation of the entity bean
Parameters: number - the primary key -> date.getTime() as string of creation the entity bean throws: CreateException - CreateException |
ejbLoad | public void ejbLoad()(Code) | | ejbLoad
|
ejbPassivate | public void ejbPassivate()(Code) | | Passivate the ejb
|
ejbPostCreate | public void ejbPostCreate(String number)(Code) | | Post create methode invoked after create methode
Parameters: number - the pk of the entity bean |
ejbRemove | public void ejbRemove()(Code) | | Removes the ejb
|
ejbStore | public void ejbStore()(Code) | | ejbStore
|
getJOnASName | abstract public String getJOnASName()(Code) | | Returns the name of the JOnAS instance
Name of the JOnAS instance where the entity bean was created |
getNumber | abstract public String getNumber()(Code) | | Returns the time when the bean was created
The time when the bean was created |
setEntityContext | public void setEntityContext(EntityContext ec)(Code) | | Set the EntityContext
Parameters: ec - entity context |
setJOnASName | abstract public void setJOnASName(String name)(Code) | | sets the name of the JOnAS instance
Parameters: name - Name of the JOnAS instance where the entity bean was created |
setNumber | abstract public void setNumber(String number)(Code) | | Sets the time when the bean was created
Parameters: number - The time when the bean was created |
unsetEntityContext | public void unsetEntityContext()(Code) | | Unsets the EntityContext
|
|
|
|