本文整理汇总了Java中net.floodlightcontroller.accesscontrollist.IACLService.addRule方法的典型用法代码示例。如果您正苦于以下问题:Java IACLService.addRule方法的具体用法?Java IACLService.addRule怎么用?Java IACLService.addRule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.floodlightcontroller.accesscontrollist.IACLService
的用法示例。
在下文中一共展示了IACLService.addRule方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: store
import net.floodlightcontroller.accesscontrollist.IACLService; //导入方法依赖的package包/类
/**
* parse a JSON string into a ACL rule instance, then add it to the ACL
* @return A string status message
*/
@Post
public String store(String json) {
IACLService aclService = (IACLService) getContext().getAttributes().get(
IACLService.class.getCanonicalName());
ACLRule newRule;
try {
newRule = jsonToRule(json);
} catch (Exception e) {
log.error("Error parsing ACL rule: " + json, e);
return "{\"status\" : \"Failed! " + e.getMessage() + "\"}";
}
String status = null;
String nw_src = newRule.getNw_src();
String nw_dst = newRule.getNw_dst();
if (nw_src == null && nw_dst == null){
status = "Failed! Either nw_src or nw_dst must be specified.";
return ("{\"status\" : \"" + status + "\"}");
}
if(aclService.addRule(newRule)){
status = "Success! New rule added.";
}else{
status = "Failed! The new ACL rule matches an existing rule.";
}
return ("{\"status\" : \"" + status + "\"}");
}
示例2: store
import net.floodlightcontroller.accesscontrollist.IACLService; //导入方法依赖的package包/类
/**
* parse a JSON string into a ACL rule instance, then add it to the ACL
* @return A string status message
*/
@Post
public String store(String json) {
IACLService aclService = (IACLService) getContext().getAttributes().get(
IACLService.class.getCanonicalName());
ACLRule newRule;
try {
newRule = jsonToRule(json);
} catch (Exception e) {
log.error("Error parsing ACL rule: " + json, e);
return "{\"status\" : \"Failed! " + e.getMessage() + "\"}";
}
String status = null;
String nw_src = newRule.getNw_src();
String nw_dst = newRule.getNw_dst();
if (nw_src == null && nw_dst == null){
status = "Failed! Either nw_src or nw_dst must be specified.";
return ("{\"status\" : \"" + status + "\"}");
}
if(aclService.addRule(newRule)){
status = "Success! New rule added.";
}else{
status = "Failed! The new ACL rule matches an existing rule.";
}
return ("{\"status\" : \"" + status + "\"}");
}