Convert neutron service base classes to unix line delimiters.
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / INeutronFloatingIPAware.java
index 05d50be818a8d2a50481d1f7f6e01e3d7dc2c8cf..43175d3236455e1d3f9f4a5df23b3e3e290e9ac0 100644 (file)
@@ -1,83 +1,83 @@
-/*\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
-/**\r
- * This interface defines the methods a service that wishes to be aware of Neutron FloatingIPs needs to implement\r
- *\r
- */\r
-\r
-public interface INeutronFloatingIPAware {\r
-\r
-    /**\r
-     * Services provide this interface method to indicate if the specified floatingIP can be created\r
-     *\r
-     * @param floatingIP\r
-     *            instance of proposed new Neutron FloatingIP object\r
-     * @return integer\r
-     *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299\r
-     *            results in the create operation being interrupted and the returned status value reflected in the\r
-     *            HTTP response.\r
-     */\r
-    public int canCreateFloatingIP(NeutronFloatingIP floatingIP);\r
-\r
-    /**\r
-     * Services provide this interface method for taking action after a floatingIP has been created\r
-     *\r
-     * @param floatingIP\r
-     *            instance of new Neutron FloatingIP object\r
-     * @return void\r
-     */\r
-    public void neutronFloatingIPCreated(NeutronFloatingIP floatingIP);\r
-\r
-    /**\r
-     * Services provide this interface method to indicate if the specified floatingIP can be changed using the specified\r
-     * delta\r
-     *\r
-     * @param delta\r
-     *            updates to the floatingIP object using patch semantics\r
-     * @param floatingIP\r
-     *            instance of the Neutron FloatingIP object to be updated\r
-     * @return integer\r
-     *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299\r
-     *            results in the update operation being interrupted and the returned status value reflected in the\r
-     *            HTTP response.\r
-     */\r
-    public int canUpdateFloatingIP(NeutronFloatingIP delta, NeutronFloatingIP original);\r
-\r
-    /**\r
-     * Services provide this interface method for taking action after a floatingIP has been updated\r
-     *\r
-     * @param floatingIP\r
-     *            instance of modified Neutron FloatingIP object\r
-     * @return void\r
-     */\r
-    public void neutronFloatingIPUpdated(NeutronFloatingIP floatingIP);\r
-\r
-    /**\r
-     * Services provide this interface method to indicate if the specified floatingIP can be deleted\r
-     *\r
-     * @param floatingIP\r
-     *            instance of the Neutron FloatingIP object to be deleted\r
-     * @return integer\r
-     *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299\r
-     *            results in the delete operation being interrupted and the returned status value reflected in the\r
-     *            HTTP response.\r
-     */\r
-    public int canDeleteFloatingIP(NeutronFloatingIP floatingIP);\r
-\r
-    /**\r
-     * Services provide this interface method for taking action after a floatingIP has been deleted\r
-     *\r
-     * @param floatingIP\r
-     *            instance of deleted Neutron FloatingIP object\r
-     * @return void\r
-     */\r
-    public void neutronFloatingIPDeleted(NeutronFloatingIP floatingIP);\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;
+
+/**
+ * This interface defines the methods a service that wishes to be aware of Neutron FloatingIPs needs to implement
+ *
+ */
+
+public interface INeutronFloatingIPAware {
+
+    /**
+     * Services provide this interface method to indicate if the specified floatingIP can be created
+     *
+     * @param floatingIP
+     *            instance of proposed new Neutron FloatingIP object
+     * @return integer
+     *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
+     *            results in the create operation being interrupted and the returned status value reflected in the
+     *            HTTP response.
+     */
+    public int canCreateFloatingIP(NeutronFloatingIP floatingIP);
+
+    /**
+     * Services provide this interface method for taking action after a floatingIP has been created
+     *
+     * @param floatingIP
+     *            instance of new Neutron FloatingIP object
+     * @return void
+     */
+    public void neutronFloatingIPCreated(NeutronFloatingIP floatingIP);
+
+    /**
+     * Services provide this interface method to indicate if the specified floatingIP can be changed using the specified
+     * delta
+     *
+     * @param delta
+     *            updates to the floatingIP object using patch semantics
+     * @param floatingIP
+     *            instance of the Neutron FloatingIP object to be updated
+     * @return integer
+     *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
+     *            results in the update operation being interrupted and the returned status value reflected in the
+     *            HTTP response.
+     */
+    public int canUpdateFloatingIP(NeutronFloatingIP delta, NeutronFloatingIP original);
+
+    /**
+     * Services provide this interface method for taking action after a floatingIP has been updated
+     *
+     * @param floatingIP
+     *            instance of modified Neutron FloatingIP object
+     * @return void
+     */
+    public void neutronFloatingIPUpdated(NeutronFloatingIP floatingIP);
+
+    /**
+     * Services provide this interface method to indicate if the specified floatingIP can be deleted
+     *
+     * @param floatingIP
+     *            instance of the Neutron FloatingIP object to be deleted
+     * @return integer
+     *            the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
+     *            results in the delete operation being interrupted and the returned status value reflected in the
+     *            HTTP response.
+     */
+    public int canDeleteFloatingIP(NeutronFloatingIP floatingIP);
+
+    /**
+     * Services provide this interface method for taking action after a floatingIP has been deleted
+     *
+     * @param floatingIP
+     *            instance of deleted Neutron FloatingIP object
+     * @return void
+     */
+    public void neutronFloatingIPDeleted(NeutronFloatingIP floatingIP);
+}