本文整理汇总了Java中net.floodlightcontroller.accesscontrollist.ACLRule.getId方法的典型用法代码示例。如果您正苦于以下问题:Java ACLRule.getId方法的具体用法?Java ACLRule.getId怎么用?Java ACLRule.getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.floodlightcontroller.accesscontrollist.ACLRule
的用法示例。
在下文中一共展示了ACLRule.getId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: remove
import net.floodlightcontroller.accesscontrollist.ACLRule; //导入方法依赖的package包/类
/**
* parse a JSON string into a ACL rule instance, then remove it from the ACL
* @return A string status message
*/
@Delete
public String remove(String json) {
IACLService ACL = (IACLService) getContext().getAttributes().get(
IACLService.class.getCanonicalName());
ACLRule rule;
try {
rule = jsonToRule(json);
} catch (Exception e) {
log.error("Error parsing ACL rule: " + json, e);
return "{\"status\" : \"Failed! " + e.getMessage() + "\"}";
}
// check whether the rule exists
boolean exists = false;
Iterator<ACLRule> iter = ACL.getRules().iterator();
while (iter.hasNext()) {
ACLRule r = iter.next();
if (r.getId() == rule.getId()) {
exists = true;
break;
}
}
String status = null;
if (!exists) {
status = "Failed! a rule with this ID doesn't exist.";
log.error(status);
} else {
ACL.removeRule(rule.getId());
status = "Success! Rule deleted";
}
return ("{\"status\" : \"" + status + "\"}");
}
示例2: remove
import net.floodlightcontroller.accesscontrollist.ACLRule; //导入方法依赖的package包/类
/**
* parse a JSON string into a ACL rule instance, then remove it from the ACL
* @return A string status message
*/
@Delete
public String remove(String json) {
IACLService ACL = (IACLService) getContext().getAttributes().get(
IACLService.class.getCanonicalName());
ACLRule rule;
try {
rule = jsonToRule(json);
} catch (Exception e) {
log.error("Error parsing ACL rule: " + json, e);
return "{\"status\" : \"Failed! " + e.getMessage() + "\"}";
}
// check whether the rule exists
boolean exists = false;
Iterator<ACLRule> iter = ACL.getRules().iterator();
while (iter.hasNext()) {
ACLRule r = iter.next();
if (r.getId() == rule.getId()) {
exists = true;
break;
}
}
String status = null;
if (!exists) {
status = "Failed! a rule with this ID doesn't exist.";
log.error(status);
} else {
ACL.removeRule(rule.getId());
status = "Success! Rule deleted";
}
return ("{\"status\" : \"" + status + "\"}");
}