Package pl.net.bluesoft.rnd.pt.ext.bpmnotifications.dao

Examples of pl.net.bluesoft.rnd.pt.ext.bpmnotifications.dao.BpmNotificationConfigDAO


    }));
  }

  @Override
  protected List<BpmNotificationConfig> getAllItems() {
    return new BpmNotificationConfigDAO().findAll();
  }
View Full Code Here


    return item;
  }

  @Override
  protected BpmNotificationConfig refreshItem(Long id) {
    return new BpmNotificationConfigDAO().loadById(id);
  }
View Full Code Here

    return new BpmNotificationConfigDAO().loadById(id);
  }

  @Override
  protected void saveItem(BpmNotificationConfig item) {
    new BpmNotificationConfigDAO().saveOrUpdate(item);
  }
View Full Code Here

TOP

Related Classes of pl.net.bluesoft.rnd.pt.ext.bpmnotifications.dao.BpmNotificationConfigDAO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.