Updates a matching rule for the specified Mobile Workflow package.
void SUPMobileWorkflow.updateMobileWorkflowMatchingRule(MobileWorkflowIDVO workflowID,
MobileWorkflowMatchingRulesVO matchRule)
If successful, returns silently. If unsuccessful, returns SUPAdminException.
// Update workflow matching rule
MobileWorkflowIDVO workflowID = new MobileWorkflowIDVO();
workflowID.setVersion(1);
workflowID.setWID(6);
MobileWorkflowMatchingRulesVO matchRule = workflow
.getWorkflowMatchingRule(workflowID);
matchRule.setBODYExpressionType(MobileWorkflowMatchingRulesVO.EXPRESSION_TYPE_REGULAREXPRESSION);
matchRule.setBODYExpression(".*wang.*");
workflow.updateMobileWorkflowMatchingRule(workflowID, matchRule);