| |
|
| java.lang.Object org.objectweb.jonas.jtests.beans.relation.tier.TiemorBean
All known Subclasses: org.objectweb.jonas.jtests.beans.relation.tier.TiemorEJB,
TiemorBean | abstract public class TiemorBean implements javax.ejb.EntityBean(Code) | | |
entityCtx | protected javax.ejb.EntityContext entityCtx(Code) | | |
ejbCreate | public java.lang.Integer ejbCreate(TiemorValue value, TierLocal tier) throws javax.ejb.CreateException(Code) | | Creates an instance based on a value object
When the client invokes a create method, the EJB container invokes the ejbCreate method.
Typically, an ejbCreate method in an entity bean performs the following tasks:
- Inserts the entity state into the database.
- Initializes the instance variables.
- Returns the primary key.
Parameters: value - the value object used to initialise the new instance the primary key of the new instance |
ejbPostCreate | public void ejbPostCreate(TiemorValue value, TierLocal tier) throws javax.ejb.CreateException(Code) | | The container invokes this method immediately after it calls ejbCreate.
Parameters: value - the value object used to initialise the new instance |
getTiemorValue | public TiemorValue getTiemorValue()(Code) | | Return the value object version of this entity.
|
getTier | abstract public TierLocal getTier()(Code) | | This is a bi-directional one-to-one relationship CMR method
the TierLocal. |
setEntityContext | public void setEntityContext(javax.ejb.EntityContext entityCtx)(Code) | | |
setNuminttie | abstract public void setNuminttie(java.lang.Integer numinttie)(Code) | | Sets the numinttie
Parameters: numinttie - the new numinttie value |
setRaisoctie | abstract public void setRaisoctie(java.lang.String raisoctie)(Code) | | Sets the raisoctie
Parameters: raisoctie - the new raisoctie value |
setTier | abstract public void setTier(TierLocal tier)(Code) | | Sets the related test.entity.tiers.TierLocal
Parameters: tier - the related test.entity.tiers.TierLocal |
setTierValue | public void setTierValue(TierValue value)(Code) | | get method relation one
|
unsetEntityContext | public void unsetEntityContext()(Code) | | |
update | public void update(TiemorValue value)(Code) | | Update the value object version of this entity.
|
|
|
|