ejbCreate(TierValue value) Creates an instance based on a value object When the client invokes a
create method, the EJB container invokes the ejbCreate method.
public void
ejbPostCreate(TierValue value) The container invokes this method immediately after it calls ejbCreate.
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(TierValue value) 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