Checkstyle formatting issues fix (SPI)
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / INeutronVPNIKEPolicyCRUD.java
index 8bdbacecdba734f8f91bd3c8cc4e60d8a129111f..d3902252d0106c07a6795c1fc836eddd9dd64877 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 INeutronVPNIKEPolicyCRUD {
-
-    /**yes
-     * Applications call this interface method to determine if a particular
-     *NeutronVPNIKEPolicy object exists
-     *
-     * @param uuid
-     *            UUID of the NeutronVPNIKEPolicy object
-     * @return boolean
-     */
-
-    public boolean neutronVPNIKEPolicyExists(String uuid);
-
-    /**
-     * Applications call this interface method to return if a particular
-     * NeutronVPNIKEPolicy object exists
-     *
-     * @param uuid
-     *            UUID of the NeutronVPNIKEPolicy object
-     * @return {@link org.opendaylight.neutron.spi.NeutronVPNIKEPolicy}
-     *          OpenStackNeutronVPNIKEPolicy class
-     */
-
-    public NeutronVPNIKEPolicy getNeutronVPNIKEPolicy(String uuid);
-
-    /**
-     * Applications call this interface method to return all NeutronVPNIKEPolicy objects
-     *
-     * @return List of OpenStackNetworks objects
-     */
-
-    public List<NeutronVPNIKEPolicy> getAllNeutronVPNIKEPolicies();
-
-    /**
-     * Applications call this interface method to add a NeutronVPNIKEPolicy object to the
-     * concurrent map
-     *
-     * @param input
-     *            OpenStackNetwork object
-     * @return boolean on whether the object was added or not
-     */
-
-    public boolean addNeutronVPNIKEPolicy(NeutronVPNIKEPolicy input);
-
-    /**
-     * Applications call this interface method to remove a Neutron NeutronVPNIKEPolicy object to the
-     * concurrent map
-     *
-     * @param uuid
-     *            identifier for the NeutronVPNIKEPolicy object
-     * @return boolean on whether the object was removed or not
-     */
-
-    public boolean removeNeutronVPNIKEPolicy(String uuid);
-
-    /**
-     * Applications call this interface method to edit a NeutronVPNIKEPolicy object
-     *
-     * @param uuid
-     *            identifier of the NeutronVPNIKEPolicy object
-     * @param delta
-     *            OpenStackNeutronVPNIKEPolicy object containing changes to apply
-     * @return boolean on whether the object was updated or not
-     */
-
-    public boolean updateNeutronVPNIKEPolicy(String uuid, NeutronVPNIKEPolicy delta);
-
-    /**
-     * Applications call this interface method to see if a MAC address is in use
-     *
-     * @param uuid
-     *            identifier of the NeutronVPNIKEPolicy object
-     * @return boolean on whether the macAddress is already associated with a
-     * port or not
-     */
-
-    public boolean neutronVPNIKEPolicyInUse(String uuid);
-
+public interface INeutronVPNIKEPolicyCRUD extends INeutronCRUD<NeutronVPNIKEPolicy> {
+    // Nothing Here.
+    // This class is defined to use reflection.
 }