throws Exception
{
EnterpriseEntityHome home = (EnterpriseEntityHome) new InitialContext().lookup("nextgenEnterpriseEntity");
try
{
EnterpriseEntity A = home.findByPrimaryKey("A");
}
catch (ObjectNotFoundException ex)
{
home.create("A");
}
try
{
EnterpriseEntity B = home.findByPrimaryKey("B");
}
catch (ObjectNotFoundException ex)
{
home.create("B");
}