CS-16145: InterVlan - Error Report to Regular Account has reference to ACL Rule ID

Reviewed-by: Vijay Bhamidipati
Description:

    Fixing message from previous commit.
This commit is contained in:
Vijayendra Bhamidipati 2012-08-28 10:49:06 -07:00
parent 2ed926b0e5
commit edce457226
1 changed files with 3 additions and 3 deletions

View File

@ -293,9 +293,9 @@ public class NetworkACLManagerImpl implements Manager,NetworkACLManager{
List<IdentityProxy> idList = new ArrayList<IdentityProxy>();
idList.add(new IdentityProxy(rule, rule.getId(), "ruleId"));
throw new NetworkRuleConflictException("The range specified, " + newRule.getSourcePortStart() + "-"
+ newRule.getSourcePortEnd() + ", conflicts with rule with specified ruleId" + rule.getId()
+ " which has " + rule.getSourcePortStart() + "-" + rule.getSourcePortEnd(), idList);
throw new NetworkRuleConflictException("The port range specified, " + newRule.getSourcePortStart() + "-"
+ newRule.getSourcePortEnd() + ", conflicts with rule with specified ruleId " +
"which has the port range " + rule.getSourcePortStart() + "-" + rule.getSourcePortEnd(), idList);
}
}