Checkstyle formatting issues fix (SPI)
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / INeutronMeteringLabelCRUD.java
index 6f691156f772d3447add90edb9be797299d3db68..a1512eab2639b9aafbc3b165543701fa6a99fb05 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015, IBM Corporation.  All rights reserved.
+ * Copyright (c) 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,
@@ -8,84 +8,7 @@
 
 package org.opendaylight.neutron.spi;
 
-import java.util.List;
-
-public interface INeutronMeteringLabelCRUD {
-
-    /**
-     * Applications call this interface method to determine if a particular
-     *NeutronMeteringLabel object exists
-     *
-     * @param uuid
-     *            UUID of the NeutronMeteringLabel object
-     * @return boolean
-     */
-
-    public boolean neutronMeteringLabelExists(String uuid);
-
-    /**
-     * Applications call this interface method to return if a particular
-     * NeutronMeteringLabel object exists
-     *
-     * @param uuid
-     *            UUID of the NeutronMeteringLabel object
-     * @return {@link org.opendaylight.neutron.neutron.spi.NeutronMeteringLabel}
-     *          OpenStackNeutronMeteringLabel class
-     */
-
-    public NeutronMeteringLabel getNeutronMeteringLabel(String uuid);
-
-    /**
-     * Applications call this interface method to return all NeutronMeteringLabel objects
-     *
-     * @return List of OpenStackNetworks objects
-     */
-
-    public List<NeutronMeteringLabel> getAllNeutronMeteringLabels();
-
-    /**
-     * Applications call this interface method to add a NeutronMeteringLabel object to the
-     * concurrent map
-     *
-     * @param input
-     *            OpenStackNetwork object
-     * @return boolean on whether the object was added or not
-     */
-
-    public boolean addNeutronMeteringLabel(NeutronMeteringLabel input);
-
-    /**
-     * Applications call this interface method to remove a Neutron NeutronMeteringLabel object to the
-     * concurrent map
-     *
-     * @param uuid
-     *            identifier for the NeutronMeteringLabel object
-     * @return boolean on whether the object was removed or not
-     */
-
-    public boolean removeNeutronMeteringLabel(String uuid);
-
-    /**
-     * Applications call this interface method to edit a NeutronMeteringLabel object
-     *
-     * @param uuid
-     *            identifier of the NeutronMeteringLabel object
-     * @param delta
-     *            OpenStackNeutronMeteringLabel object containing changes to apply
-     * @return boolean on whether the object was updated or not
-     */
-
-    public boolean updateNeutronMeteringLabel(String uuid, NeutronMeteringLabel delta);
-
-    /**
-     * Applications call this interface method to see if a MAC address is in use
-     *
-     * @param uuid
-     *            identifier of the NeutronMeteringLabel object
-     * @return boolean on whether the macAddress is already associated with a
-     * port or not
-     */
-
-    public boolean neutronMeteringLabelInUse(String uuid);
-
+public interface INeutronMeteringLabelCRUD extends INeutronCRUD<NeutronMeteringLabel> {
+    // Nothing Here.
+    // This class is defined to use reflection.
 }