package org.jboss.test.util.ejb;
import java.rmi.RemoteException;
import javax.ejb.*;
public abstract class EntitySupport
extends EnterpriseSupport
implements EntityBean
{
protected EntityContext entityCtx;
public void setEntityContext(EntityContext ctx)
throws RemoteException
{
entityCtx = ctx;
}
public void unsetEntityContext()
throws RemoteException
{
}
public void ejbActivate()
throws RemoteException
{
}
public void ejbPassivate()
throws RemoteException
{
}
public void ejbLoad()
throws RemoteException
{
}
public void ejbStore()
throws RemoteException
{
}
public void ejbRemove()
throws RemoteException, RemoveException
{
}
}