Figured I better add the entire implementing class.

  | @Stateless
  | @Name("garageAccessor")
  | public class GarageAccessorBean implements GarageAccessorLocal {
  | 
  |    @EJB
  |    private GarageEntityBeanFacadeLocal garageEntityBeanFacade;
  |    
  |    /** Creates a new instance of GarageAccessorBean */
  |    public GarageAccessorBean() {
  |    }
  |    
  |    public List<GarageEntityBean> getGarages()
  |    {
  |       List<GarageEntityBean> garages = garageEntityBeanFacade.findAll();
  |       
  |       return garages;
  |    }
  | 
  |    public void persist(Object object) {
  |       // TODO:
  |       // em.persist(object);
  |    }
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068973#4068973

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068973
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to