Ejemplo n.º 1
0
 public ISimbolo create(String strDES_SIM) throws javax.ejb.CreateException {
   SimboloBean bean = new SimboloBean();
   try {
     Object primaryKey = bean.ejbCreate(strDES_SIM);
     bean.setEntityContext(new EntityContextWrapper(primaryKey));
     bean.ejbPostCreate(strDES_SIM);
     return bean;
   } catch (Exception ex) {
     throw new javax.ejb.CreateException(ex.getMessage());
   }
 }