Remove the remaining netvirt code from ovsdb
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / translator / crud / INeutronFloatingIPCRUD.java
diff --git a/openstack/net-virt/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/translator/crud/INeutronFloatingIPCRUD.java b/openstack/net-virt/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/translator/crud/INeutronFloatingIPCRUD.java
deleted file mode 100644 (file)
index 73ee3c4..0000000
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Copyright (c) 2013, 2015 IBM Corporation and others.  All rights reserved.
- *
- * 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.ovsdb.openstack.netvirt.translator.crud;
-
-import java.util.List;
-
-import org.opendaylight.ovsdb.openstack.netvirt.translator.NeutronFloatingIP;
-
-/**
- * This interface defines the methods for CRUD of NB FloatingIP objects
- *
- */
-
-public interface INeutronFloatingIPCRUD {
-    /**
-     * Applications call this interface method to determine if a particular
-     * FloatingIP object exists
-     *
-     * @param uuid
-     *            UUID of the FloatingIP object
-     * @return boolean
-     */
-
-    boolean floatingIPExists(String uuid);
-
-    /**
-     * Applications call this interface method to return if a particular
-     * FloatingIP object exists
-     *
-     * @param uuid
-     *            UUID of the FloatingIP object
-     * @return {@link org.opendaylight.ovsdb.openstack.netvirt.translator.NeutronFloatingIP}
-     *          OpenStack FloatingIP class
-     */
-
-    NeutronFloatingIP getFloatingIP(String uuid);
-
-    /**
-     * Applications call this interface method to return all FloatingIP objects
-     *
-     * @return a Set of OpenStackFloatingIPs objects
-     */
-
-    List<NeutronFloatingIP> getAllFloatingIPs();
-
-    /**
-     * Applications call this interface method to add a FloatingIP object to the
-     * concurrent map
-     *
-     * @param input
-     *            OpenStackFloatingIP object
-     * @return boolean on whether the object was added or not
-     */
-
-    boolean addFloatingIP(NeutronFloatingIP input);
-
-    /**
-     * Applications call this interface method to remove a FloatingIP object to the
-     * concurrent map
-     *
-     * @param uuid
-     *            identifier for the FloatingIP object
-     * @return boolean on whether the object was removed or not
-     */
-
-    boolean removeFloatingIP(String uuid);
-
-    /**
-     * Applications call this interface method to edit a FloatingIP object
-     *
-     * @param uuid
-     *            identifier of the FloatingIP object
-     * @param delta
-     *            OpenStackFloatingIP object containing changes to apply
-     * @return boolean on whether the object was updated or not
-     */
-
-    boolean updateFloatingIP(String uuid, NeutronFloatingIP delta);
-}