blob: 7f417542b5bc5715533762b5812f0f0271dd5773 [file] [log] [blame]
private EntityContext myEntityCtx;
/**
* ejbActivate
*/
public void ejbActivate() {
}
/**
* ejbLoad
*/
public void ejbLoad() {
}
/**
* ejbPassivate
*/
public void ejbPassivate() {
}
/**
* ejbRemove
*/
public void ejbRemove() throws RemoveException {
}
/**
* ejbStore
*/
public void ejbStore() {
}
/**
* getEntityContext
*/
public EntityContext getEntityContext() {
return myEntityCtx;
}
/**
* setEntityContext
*/
public void setEntityContext(EntityContext ctx) {
myEntityCtx = ctx;
}
/**
* unsetEntityContext
*/
public void unsetEntityContext() {
myEntityCtx = null;
}