* @param sqlExpression
* A <code>String</code> instance of the sql expression.
* @return A <code>RuleInfo</code> object that represents the updated rule.
*/
public RuleInfo withSqlRuleAction(String sqlExpression) {
SqlRuleAction action = new SqlRuleAction();
action.setSqlExpression(sqlExpression);
action.setCompatibilityLevel(20);
return setAction(action);
}