Examples of activityVariable()


Examples of org.joget.workflow.model.service.WorkflowManager.activityVariable()

                String jsonObjectName = mapping.get("jsonObjectName").toString();

                String value = (String) getObjectFromMap(jsonObjectName, object);

                if (value != null) {
                    workflowManager.activityVariable(wfAssignment.getActivityId(), variable, value);
                }
            }
        }
    }
View Full Code Here

Examples of org.joget.workflow.model.service.WorkflowManager.activityVariable()

                    // save variable values
                    for (Iterator<String> i = variableMap.keySet().iterator(); i.hasNext();) {
                        String variableName = i.next();
                        String variableValue = variableMap.get(variableName);
                        if (activityId != null) {
                            workflowManager.activityVariable(activityId, variableName, variableValue);
                        } else {
                            workflowManager.processVariable(processId, variableName, variableValue);
                        }
                    }
                }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.