0 Replies Latest reply on May 6, 2005 12:58 PM by robertparis

    How implement finder method with bean inheritance?

    robertparis

      I have a ProductBean which is the super class of BookBean, ClothesBean and I want to create a find method like:

      [CODE]
      public ProductRemote findAllInCategory(Integer categoryID) throws FinderException, RemoteException;
      [/CODE]

      Since each bean is going to have its own table, what's the best way to do this? Is this even possible with CMP find methods?