Package org.jbpm.task.service.TaskClientHandler

Examples of org.jbpm.task.service.TaskClientHandler.GetContentResponseHandler


        String userId = task.getTaskData().getActualOwner().getId();
        Map<String, Object> results = new HashMap<String, Object>();
        results.put("ActorId", userId);
        long contentId = task.getTaskData().getOutputContentId();
        if (contentId != -1) {
          GetContentResponseHandler getContentResponseHandler =
            new GetResultContentResponseHandler(manager, task, results);
          client.getContent(contentId, getContentResponseHandler);
        } else {
          manager.completeWorkItem(workItemId, results);
        }
View Full Code Here


        String userId = task.getTaskData().getActualOwner().getId();
        Map<String, Object> results = new HashMap<String, Object>();
        results.put("ActorId", userId);
        long contentId = task.getTaskData().getOutputContentId();
        if (contentId != -1) {
          GetContentResponseHandler getContentResponseHandler =
            new GetResultContentResponseHandler(task, results);
          client.getContent(contentId, getContentResponseHandler);
        } else {
          session.getWorkItemManager().completeWorkItem(workItemId, results);
        }
View Full Code Here

TOP

Related Classes of org.jbpm.task.service.TaskClientHandler.GetContentResponseHandler

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.