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

Examples of pl.net.bluesoft.rnd.pt.ext.bpmnotifications.service.BpmNotificationService


    private final static Logger logger = Logger.getLogger(SendMailStep.class.getName());

    @Override
    public String invoke(BpmStep step, Map<String, String> params) throws Exception {
        ProcessToolContext ctx = ProcessToolContext.Util.getThreadProcessToolContext();
        BpmNotificationService service = ctx.getRegistry().getRegisteredService(BpmNotificationService.class);
       
        Map<String, Object> data = new HashMap<String, Object>();
        String processId = step.getProcessInstance().getExternalKey();
        if (!Strings.hasText(processId))
          processId = step.getProcessInstance().getInternalId();
View Full Code Here

TOP

Related Classes of pl.net.bluesoft.rnd.pt.ext.bpmnotifications.service.BpmNotificationService

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.