This method has been deprecated. Updates a matching rule for the specified Mobile Workflow package.
void updateMobileWorkflowMatchingRule(MobileWorkflowIDVO workflowID, MobileWorkflowMatchingRulesVO matchRule) throws SUPAdminException;
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);