Convert neutron service base classes to unix line delimiters.
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / INeutronNetworkCRUD.java
index 248153105c581ede84d083240664b7206694b212..bf900a618f1057c5fbc8babc12635cbec7045d37 100644 (file)
@@ -1,95 +1,95 @@
-/*\r
- * Copyright IBM Corporation, 2013.  All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.controller.networkconfig.neutron;\r
-\r
-import java.util.List;\r
-\r
-/**\r
- * This interface defines the methods for CRUD of NB network objects\r
- *\r
- */\r
-\r
-public interface INeutronNetworkCRUD {\r
-    /**\r
-     * Applications call this interface method to determine if a particular\r
-     * Network object exists\r
-     *\r
-     * @param uuid\r
-     *            UUID of the Network object\r
-     * @return boolean\r
-     */\r
-\r
-    public boolean networkExists(String uuid);\r
-\r
-    /**\r
-     * Applications call this interface method to return if a particular\r
-     * Network object exists\r
-     *\r
-     * @param uuid\r
-     *            UUID of the Network object\r
-     * @return {@link org.opendaylight.controller.networkconfig.neutron.NeutronNetwork.OpenStackNetworks}\r
-     *          OpenStack Network class\r
-     */\r
-\r
-    public NeutronNetwork getNetwork(String uuid);\r
-\r
-    /**\r
-     * Applications call this interface method to return all Network objects\r
-     *\r
-     * @return List of OpenStackNetworks objects\r
-     */\r
-\r
-    public List<NeutronNetwork> getAllNetworks();\r
-\r
-    /**\r
-     * Applications call this interface method to add a Network object to the\r
-     * concurrent map\r
-     *\r
-     * @param input\r
-     *            OpenStackNetwork object\r
-     * @return boolean on whether the object was added or not\r
-     */\r
-\r
-    public boolean addNetwork(NeutronNetwork input);\r
-\r
-    /**\r
-     * Applications call this interface method to remove a Network object to the\r
-     * concurrent map\r
-     *\r
-     * @param uuid\r
-     *            identifier for the network object\r
-     * @return boolean on whether the object was removed or not\r
-     */\r
-\r
-    public boolean removeNetwork(String uuid);\r
-\r
-    /**\r
-     * Applications call this interface method to edit a Network object\r
-     *\r
-     * @param uuid\r
-     *            identifier of the network object\r
-     * @param delta\r
-     *            OpenStackNetwork object containing changes to apply\r
-     * @return boolean on whether the object was updated or not\r
-     */\r
-\r
-    public boolean updateNetwork(String uuid, NeutronNetwork delta);\r
-\r
-    /**\r
-     * Applications call this interface method to determine if a Network object\r
-     * is use\r
-     *\r
-     * @param netUUID\r
-     *            identifier of the network object\r
-     *\r
-     * @return boolean on whether the network is in use or not\r
-     */\r
-\r
-    public boolean networkInUse(String netUUID);\r
-}\r
+/*
+ * Copyright IBM Corporation, 2013.  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.controller.networkconfig.neutron;
+
+import java.util.List;
+
+/**
+ * This interface defines the methods for CRUD of NB network objects
+ *
+ */
+
+public interface INeutronNetworkCRUD {
+    /**
+     * Applications call this interface method to determine if a particular
+     * Network object exists
+     *
+     * @param uuid
+     *            UUID of the Network object
+     * @return boolean
+     */
+
+    public boolean networkExists(String uuid);
+
+    /**
+     * Applications call this interface method to return if a particular
+     * Network object exists
+     *
+     * @param uuid
+     *            UUID of the Network object
+     * @return {@link org.opendaylight.controller.networkconfig.neutron.NeutronNetwork.OpenStackNetworks}
+     *          OpenStack Network class
+     */
+
+    public NeutronNetwork getNetwork(String uuid);
+
+    /**
+     * Applications call this interface method to return all Network objects
+     *
+     * @return List of OpenStackNetworks objects
+     */
+
+    public List<NeutronNetwork> getAllNetworks();
+
+    /**
+     * Applications call this interface method to add a Network object to the
+     * concurrent map
+     *
+     * @param input
+     *            OpenStackNetwork object
+     * @return boolean on whether the object was added or not
+     */
+
+    public boolean addNetwork(NeutronNetwork input);
+
+    /**
+     * Applications call this interface method to remove a Network object to the
+     * concurrent map
+     *
+     * @param uuid
+     *            identifier for the network object
+     * @return boolean on whether the object was removed or not
+     */
+
+    public boolean removeNetwork(String uuid);
+
+    /**
+     * Applications call this interface method to edit a Network object
+     *
+     * @param uuid
+     *            identifier of the network object
+     * @param delta
+     *            OpenStackNetwork object containing changes to apply
+     * @return boolean on whether the object was updated or not
+     */
+
+    public boolean updateNetwork(String uuid, NeutronNetwork delta);
+
+    /**
+     * Applications call this interface method to determine if a Network object
+     * is use
+     *
+     * @param netUUID
+     *            identifier of the network object
+     *
+     * @return boolean on whether the network is in use or not
+     */
+
+    public boolean networkInUse(String netUUID);
+}