Examples of SqlRuleAction


Examples of com.microsoft.windowsazure.services.servicebus.implementation.SqlRuleAction

     * @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);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.