Convert neutron service base classes to unix line delimiters.
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / INeutronNetworkAware.java
index dc6df25ab7dd3b4ed801acdc44f3916352389c30..88d3c1dc6e84726842361add116002fd035ebb24 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 Networks needs to implement\r
- *\r
- */\r
-\r
-public interface INeutronNetworkAware {\r
-\r
-    /**\r
-     * Services provide this interface method to indicate if the specified network can be created\r
-     *\r
-     * @param network\r
-     *            instance of proposed new Neutron Network 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 canCreateNetwork(NeutronNetwork network);\r
-\r
-    /**\r
-     * Services provide this interface method for taking action after a network has been created\r
-     *\r
-     * @param network\r
-     *            instance of new Neutron Network object\r
-     * @return void\r
-     */\r
-    public void neutronNetworkCreated(NeutronNetwork network);\r
-\r
-    /**\r
-     * Services provide this interface method to indicate if the specified network can be changed using the specified\r
-     * delta\r
-     *\r
-     * @param delta\r
-     *            updates to the network object using patch semantics\r
-     * @param network\r
-     *            instance of the Neutron Network 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 canUpdateNetwork(NeutronNetwork delta, NeutronNetwork original);\r
-\r
-    /**\r
-     * Services provide this interface method for taking action after a network has been updated\r
-     *\r
-     * @param network\r
-     *            instance of modified Neutron Network object\r
-     * @return void\r
-     */\r
-    public void neutronNetworkUpdated(NeutronNetwork network);\r
-\r
-    /**\r
-     * Services provide this interface method to indicate if the specified network can be deleted\r
-     *\r
-     * @param network\r
-     *            instance of the Neutron Network 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 canDeleteNetwork(NeutronNetwork network);\r
-\r
-    /**\r
-     * Services provide this interface method for taking action after a network has been deleted\r
-     *\r
-     * @param network\r
-     *            instance of deleted Neutron Network object\r
-     * @return void\r
-     */\r
-    public void neutronNetworkDeleted(NeutronNetwork network);\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 Networks needs to implement
+ *
+ */
+
+public interface INeutronNetworkAware {
+
+    /**
+     * Services provide this interface method to indicate if the specified network can be created
+     *
+     * @param network
+     *            instance of proposed new Neutron Network 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 canCreateNetwork(NeutronNetwork network);
+
+    /**
+     * Services provide this interface method for taking action after a network has been created
+     *
+     * @param network
+     *            instance of new Neutron Network object
+     * @return void
+     */
+    public void neutronNetworkCreated(NeutronNetwork network);
+
+    /**
+     * Services provide this interface method to indicate if the specified network can be changed using the specified
+     * delta
+     *
+     * @param delta
+     *            updates to the network object using patch semantics
+     * @param network
+     *            instance of the Neutron Network 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 canUpdateNetwork(NeutronNetwork delta, NeutronNetwork original);
+
+    /**
+     * Services provide this interface method for taking action after a network has been updated
+     *
+     * @param network
+     *            instance of modified Neutron Network object
+     * @return void
+     */
+    public void neutronNetworkUpdated(NeutronNetwork network);
+
+    /**
+     * Services provide this interface method to indicate if the specified network can be deleted
+     *
+     * @param network
+     *            instance of the Neutron Network 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 canDeleteNetwork(NeutronNetwork network);
+
+    /**
+     * Services provide this interface method for taking action after a network has been deleted
+     *
+     * @param network
+     *            instance of deleted Neutron Network object
+     * @return void
+     */
+    public void neutronNetworkDeleted(NeutronNetwork network);
+}