Hide Table of Contents
Class: WMWorkflowTask
[AMD Module Require]
require(["workflowmanager/WMWorkflowTask"], function(WMWorkflowTask) { /* code goes here */ });;

Description

WMWorkflowTask class to perform operations on Workflow Manager (Classic) Workflows.

Class hierarchy

workflowmanager/BaseTask
|_workflowmanager/WMWorkflowTask

Constructors

ConstructorDescription
new WMWorkflowTask(url)Constructor for WMWorkflowTask. Disable client caching is default to be true.

Properties

NameTypeSummary
disableClientCachingBooleanThe indicator to disable client browser caching.
proxyURLStringThe proxy URL.
tokenStringThe token string if security is on.
urlStringThe base URL for Workflow Manager (Classic) service.

Methods

MethodReturn ValueDescription
assignSteps(jobId, stepIds, assignedType, assignedTo, user, callback, errback)ObjectAssigns one or more steps (Step[]) of a job.
canRunStep(jobId, stepId, user, callback, errback)ObjectGet a StepRunnableStatus that indicates if this workflow step can be run.
executeSteps(jobId, stepIds, user, auto, callback, errback)ObjectExecutes the specified steps in order and gets back execute information (ExecuteInfo[]).
getAllSteps(jobId, callback, errback)ObjectRetrieves all workflow steps (Step[]) of a job.
getCurrentSteps(jobId, callback, errback)ObjectRetrieves the current workflow steps (Step[]) of a job.
getStep(jobId, stepId, callback, errback)ObjectRetrieves a specific workflow step (Step[]) of a job.
getStepComments(jobId, stepId, callback, errback)ObjectGets all the comments (StepComment[]) associated with a specific step of a job workflow.
getStepDescription(jobId, stepId, callback, errback)noneGet the detailed description of a workflow step.
getStepFileURL(jobId, stepId)stringReturns a URL string to access the file content of a file step.
getWorkflowDisplayDetails(jobId, callback, errback)ObjectGet a job's workflow display details (WorkflowDisplayDetails).
getWorkflowImageURL(jobId)stringReturns a URL string to an image depicting the current state of a job's workflow.
logStepComment(jobId, stepId, comment, user, callback, errback)noneAdds a new comment on a specific step of a job workflow.
markStepsAsDone(jobId, stepIds, user, callback, errback)ObjectMarks the specified steps of a job workflow as completed and returns ExecuteInfo[].
moveToNextStep(jobId, stepId, returnCode, user, callback, errback)noneAdvances the workflow to the next step based on a return code value.
recreateWorkflow(jobId, user, callback, errback)noneRecreates the job workflow. The job workflow will be updated with the latest job type's workflow after the job has been created.
resolveConflict(jobId, stepId, optionReturnCode, optionStepIds, user, callback, errback)noneResolves workflow path conflicts that can result in executing or marking as complete a step that can have two or more next steps.
setCurrentStep(jobId, stepId, user, callback, errback)noneSets a step as the currently active step of a job workflow.
Constructor Details

new WMWorkflowTask(url)

Constructor for WMWorkflowTask. Set disableClientCaching to be True.
Parameters:
<string>urlRequiredThe base Workflow Manager (Classic) REST URL.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var wmWorkflowTask = new WMWorkflowTask("http://myserver/arcgis/rest/services/WMService/WMServer");
    });
    ...
});
        
Property Details

<Boolean> disableClientCaching

The indicator to disable client browser caching.

<String> proxyURL

The proxy URL.

<String> token

The token string if security is on.

<String> url

The base URL for Workflow Manager (Classic) Service.
Method Details

assignSteps(jobId, stepIds, assignedType, assignedTo, user, callback, errback)

Assigns one or more steps (Step[]) of a job.
Input Parameters:
<int> jobIdRequiredThe job Id.
<array> stepIdsRequiredAn array of step IDs.
<JobAssignmentType> assignedTypeRequiredDetermines whether to assign to a user or group.
<string> assignedToRequiredThe name of the user or group to assign the jobs to.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var stepIds = [574, 581];
    wmWMWorkflowTask.assignSteps(401, stepIds, esri.WorkflowManager.JobAssignmentType.USER, "jrobinson", "cjones", 
        function () {
            alert("Steps assigned successfully.")
        }, function () {
            alert("Failed to assign steps.")
        });       
    ...
});
        

canRunStep(jobId, stepId, user, callback, errback)

Get a StepRunnableStatus that indicates if this workflow step can be run. If the request is successful, the user-specified callback function is invoked with the result as a StepRunnableStatus. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<string> userRequiredThe user name.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    wmWorkflowTask.canRunStep(6803, 6815, "demo", function (data) {
        console.log("canRun value is: " + data);
    });       
    ...
});
        

executeSteps(jobId, stepIds, user, auto, callback, errback)

Executes the specified steps in order and gets back execute information (ExecuteInfo[]). If the request is successful, the user-specified callback function is invoked with the result as a ExecuteInfo[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<string> userRequiredThe user name.
<int> reportIdRequiredThe report Id.
<string> userRequiredThe user name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var stepIds = [17682, 17683];
    var executeInfoArray = new Array();
    wmWorkflowTask.executeSteps(18011, stepIds, "demo", true, function (data) {
        executeInfoArray = data;
    });       
    ...
});
        

getAllSteps(jobId, callback, errback)

Retrieves all workflow steps (Step[]) of a job. If the request is successful, the user-specified callback function is invoked with the result as a Step[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var steps = new Array();
    wmWorkflowTask.getAllSteps(18011, function (data) {
        steps = data;
    });       
    ...
});
        

getCurrentSteps(jobId, callback, errback)

Retrieves all workflow steps (Step[]) of a job. If the request is successful, the user-specified callback function is invoked with the result as a Step[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var steps = new Array();
    wmWorkflowTask.getAllSteps(18011, function (data) {
        steps = data;
    });       
    ...
});
        

getStep(jobId, stepId, callback, errback)

Retrieves a specific workflow step (Step) of a job. If the request is successful, the user-specified callback function is invoked with the result as a Step. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    wmWorkflowTask.getStep(6833, 6966, function (step) {
     console.log("id: " + step.id);
     console.log("assignedTo: " + step.assignedTo);
     console.log("canSkip: " + step.canSkip);
     console.log("name: " + step.name);
    });       
    ...
}); 
        

getStepComments(jobId, stepId, callback, errback)

Gets all the comments (StepComment[]) associated with a specific step of a job workflow. If the request is successful, the user-specified callback function is invoked with the result as a StepComment[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var comments = new Array();
    wmWorkflowTask.getStepComments(6833, 6966, function (data) {
        comments = data;
    });       
    ...
});
        

getStepDescription(jobId, stepId, callback, errback)

Get the detailed description of a workflow step. If the request is successful, the user-specified callback function is invoked with the result as a string that describes the step. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var description;
    wmWorkflowTask.getStepDescription(18819, 18118, function (data) {
        description = data;
    });        
    ...
});
        

{string} getStepFileURL(jobId, stepId)

Returns a URL string to access the file content of a file step.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
Returns:
{string} URL String to access the file content of a file step.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var urlString = wmWorkflowTask.getStepFileURL(18819, 18118);
    window.open(urlString, "_blank"); 
});
        

getWorkflowDisplayDetails(jobId, callback, errback)

Get a job's workflow display details (WorkflowDisplayDetails). If the request is successful, the user-specified callback function is invoked with the result as a WorkflowDisplayDetails. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var details;
    wmWorkflowTask.getWorkflowDisplayDetails(18414, function (data) {
        details = data;
    });
    ...
});
        

{string} getWorkflowImageURL(jobId)

Returns a URL string to an image depicting the current state of a job's workflow.
Input Parameters:
<int> jobIdRequiredThe job Id.
Returns:
{string} URL String to access the file content of a job attachment.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var img = document.getElemenyById("workflowImage");
    var urlString = wmWorkflowTask.getWorkflowImageURL(18819);
    img.src = urlString;
});
        

logStepComment(jobId, stepId, comment, user, callback, errback)

Adds a new comment on a specific step of a job workflow. If the request is successful, the user-specified callback function is invoked with the empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<string> commentRequiredA brief message to associate with the step.
<string> userRequiredThe user name
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    wmWorkflowTask.logStepComment(6833, 6966, "this is to add comment to a step", "demo", function (data) {
        alert("Log comment successfully.");
    });
    ...
});    

markStepsAsDone(jobId, stepIds, user, callback, errback)

Marks the specified steps of a job workflow as completed and returns ExecuteInfo[]. If the request is successful, the user-specified callback function is invoked with the result as a ExecuteInfo[]. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int[]> stepIdsRequiredThe array of step Ids.
<string> userRequiredThe user name
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var stepIds = [17682, 17683];
    var executeInfoArray = new Array();
    wmWorkflowTask.markStepsAsDone(18413, stepIds, "demo", function (data) {
      executeInfoArray = data;
    });
    ...
});
        

moveToNextStep(jobId, stepId, returnCode, user, callback, errback)

Advances the workflow to the next step based on a return code value. If the request is successful, the user-specified callback function is invoked with the empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<int> returnCodeRequiredA numeric value representing the return code chosen by the client.
<string> userRequiredThe user name
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    wmWorkflowTask.moveToNextStep(23223, 22154, 3, "demo", function (data) {
        alert("Successfully moved to next step.");
    });
    ...
});
     

recreateWorkflow(jobId, user, callback, errback)

Recreates the job workflow. The job workflow will be updated with the latest job type's workflow after the job has been created.
Input Parameters:
<int> jobIdRequiredThe job Id.
<string> userRequiredThe user name
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    wmWorkflowTask.recreateWorkflow(6833, "demo", function (data) {
        alert("Successfully recreated job workflow.");
    }); 
    ...
});        

resolveConflict(jobId, stepId, optionReturnCode, optionStepIds, user, callback, errback)

Resolves workflow path conflicts that can result in executing or marking as complete a step that can have two or more next steps. If the request is successful, the user-specified callback function is invoked with the empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<int> optionReturnCodeRequiredA numeric value representing the return code from the step where the conflict was encountered.
<int[]> optionStepIdsRequiredAn array of step IDs of all the possible next steps.
<string> userRequiredThe user name
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    var steps = [6964];
    wmWorkflowTask.resolveConflict(6833, 6967, 2, steps, "demo", function (data) {
        alert("Successfully resolved conflict.");
    }); 
    ...
});        

setCurrentStep(jobId, stepId, user, callback, errback)

Sets a step as the currently active step of a job workflow. If the request is successful, the user-specified callback function is invoked with the empty result. Otherwise, the errback function is invoked with the result error message as string.
Input Parameters:
<int> jobIdRequiredThe job Id.
<int> stepIdRequiredThe step Id.
<string> userRequiredThe user name
<function> callbackOptionalThe success callback function name.
<function> errbackOptionalThe error callback function name.
Sample:
require([
    "workflowmanager/WMWorkflowTask", ...
], function(WMWorkflowTask, ...) {
    wmWorkflowTask.setCurrentStep(6833, 6967, "demo", function (data) {
      alert("Successfully set step 6967 as current step.");
    });  
    ...
});