2 Replies Latest reply on Jan 13, 2010 9:11 AM by boy18nj

    Is it justified to extend EntityHome?

    boy18nj

      I have my custom remove method-

       

      @Transactional

       

      public void remove(CollatRptCatgryMap collatRptCatgryMap) {

      Query query = entityManager.createQuery("delete from CollatRptCatgryMap collatRptCatgryMap where collatRptCatgryMap.catgryMapId = :catgryMapId");

      query.setParameter("catgryMapId", collatRptCatgryMap.getCatgryMapId()) .executeUpdate();

       

      entityManager.flush();

      }

       

      In order to generate a message on the screen, when successfully deleted. I thought to have a workaround.

      Just for generating this Successfully deleted message,  I extended this class like this-

       

      public class BankBrandsBean extends EntityHome

       

       

      @Transactional

       

      public void remove(CollatRptCatgryMap collatRptCatgryMap) {

       

       

      entityManager.remove(collatRptCatgryMap);

       

      entityManager.flush();

      deletedMessage();

      raiseAfterTransactionSuccessEvent();}

       

      Is this my approach justified or is there other way to generate a successful deleted message info?

      Basically i am using listshuttle, so save or remove operations have been modified to 1 button save.