X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetworkconfiguration%2Fneutron%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetworkconfig%2Fneutron%2FINeutronFirewallCRUD.java;fp=opendaylight%2Fnetworkconfiguration%2Fneutron%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetworkconfig%2Fneutron%2FINeutronFirewallCRUD.java;h=0000000000000000000000000000000000000000;hb=ec438637ca302ccd5ed7d9b2c21ea92d21f4913e;hp=5e7fbb2090ca8bab3ba4ca8d018803053bb88eb0;hpb=3927509ec3ecfa32a51b725d2b7155d425f5b877;p=controller.git diff --git a/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/INeutronFirewallCRUD.java b/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/INeutronFirewallCRUD.java deleted file mode 100644 index 5e7fbb2090..0000000000 --- a/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/INeutronFirewallCRUD.java +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Copyright (C) 2014 Red Hat, Inc. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ - -package org.opendaylight.controller.networkconfig.neutron; - -import java.util.List; - -/** - * This interface defines the methods for CRUD of NB OpenStack Firewall objects - * - * @deprecated Replaced by {@link org.opendaylight.neutron.neutron.spi.INeutronFirewallCRUD} - */ - -@Deprecated -public interface INeutronFirewallCRUD { - /** - * Applications call this interface method to determine if a particular - *Firewall object exists - * - * @param uuid - * UUID of the Firewall object - * @return boolean - */ - - public boolean neutronFirewallExists(String uuid); - - /** - * Applications call this interface method to return if a particular - * Firewall object exists - * - * @param uuid - * UUID of the Firewall object - * @return {@link org.opendaylight.controller.networkconfig.neutron.NeutronFirewall} - * OpenStackFirewall class - */ - - public NeutronFirewall getNeutronFirewall(String uuid); - - /** - * Applications call this interface method to return all Firewall objects - * - * @return List of OpenStackNetworks objects - */ - - public List getAllNeutronFirewalls(); - - /** - * Applications call this interface method to add a Firewall object to the - * concurrent map - * - * @param input - * OpenStackNetwork object - * @return boolean on whether the object was added or not - */ - - public boolean addNeutronFirewall(NeutronFirewall input); - - /** - * Applications call this interface method to remove a Neutron Firewall object to the - * concurrent map - * - * @param uuid - * identifier for the Firewall object - * @return boolean on whether the object was removed or not - */ - - public boolean removeNeutronFirewall(String uuid); - - /** - * Applications call this interface method to edit a Firewall object - * - * @param uuid - * identifier of the Firewall object - * @param delta - * OpenStackFirewall object containing changes to apply - * @return boolean on whether the object was updated or not - */ - - public boolean updateNeutronFirewall(String uuid, NeutronFirewall delta); - - /** - * Applications call this interface method to see if a MAC address is in use - * - * @param uuid - * identifier of the Firewall object - * @return boolean on whether the macAddress is already associated with a - * port or not - */ - - public boolean neutronFirewallInUse(String uuid); - -}