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

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


    item.setDebug(getBoolean(debug));
  }

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


    return new BpmNotificationMailProperties();
  }

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

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

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

    item.setNotifyUserAttributes(getString(notifyUserAttributes));
  }

  @Override
  protected void prepareData() {
    mailProperties = new BpmNotificationMailPropertiesDAO().findAll();

    mailTemplates = new BpmNotificationTemplateDAO().findAll();

    processDefinitions = getThreadProcessToolContext()
        .getProcessDefinitionDAO().getActiveConfigurations();
View Full Code Here

TOP

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

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.