Updates a matching rule for the specified Hybrid App package.
void updateMobileHybridAppMatchingRule(MobileHybridAppIDVO hybridAppID, MobileHybridAppMatchingRulesVO matchRule) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
// Update HybridApp matching rule
MobileHybridAppIDVO hybridAppID = new MobileHybridAppIDVO();
hybridAppID.setVersion(1);
hybridAppID.setWID(6);
MobileHybridAppMatchingRulesVO matchRule = mobileHybridApp
		.getMobileHybridAppMatchingRule(hybridAppID);
matchRule.setBODYExpressionType(MobileHybridAppMatchingRulesVO.EXPRESSION_TYPE_REGULAREXPRESSION);
matchRule.setBODYExpression(".*wang.*");
mobileHybridApp.updateMobileHybridAppMatchingRule(hybridAppID, matchRule);