use of com.cloud.agent.api.CleanupLogicalEdgeFirewallCommand in project cloudstack by apache.
the class CiscoVnmcElement method cleanupLogicalEdgeFirewall.
private boolean cleanupLogicalEdgeFirewall(long vlanId, long hostId) {
CleanupLogicalEdgeFirewallCommand cmd = new CleanupLogicalEdgeFirewallCommand(vlanId);
Answer answer = _agentMgr.easySend(hostId, cmd);
return answer.getResult();
}
Aggregations