Convert neutron northbound classes to unix line delimiters
[controller.git] / opendaylight / northbound / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / northbound / NeutronNetworkRequest.java
index 9d449380a5743548bdfb39a240655ada7fd8a59b..cebd3c267dd1a1ad2d3b345f2f97d498046631b0 100644 (file)
@@ -1,55 +1,55 @@
-/*\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.northbound;\r
-\r
-import java.util.List;\r
-\r
-import javax.xml.bind.annotation.XmlAccessType;\r
-import javax.xml.bind.annotation.XmlAccessorType;\r
-import javax.xml.bind.annotation.XmlElement;\r
-import javax.xml.bind.annotation.XmlRootElement;\r
-\r
-import org.opendaylight.controller.networkconfig.neutron.NeutronNetwork;\r
-\r
-@XmlRootElement\r
-@XmlAccessorType(XmlAccessType.NONE)\r
-public class NeutronNetworkRequest {\r
-    // See OpenStack Network API v2.0 Reference for description of\r
-    // annotated attributes\r
-\r
-    @XmlElement(name="network")\r
-    NeutronNetwork singletonNetwork;\r
-\r
-    @XmlElement(name="networks")\r
-    List<NeutronNetwork> bulkRequest;\r
-\r
-    NeutronNetworkRequest() {\r
-    }\r
-\r
-    NeutronNetworkRequest(List<NeutronNetwork> bulk) {\r
-        bulkRequest = bulk;\r
-        singletonNetwork = null;\r
-    }\r
-\r
-    NeutronNetworkRequest(NeutronNetwork net) {\r
-        singletonNetwork = net;\r
-    }\r
-\r
-    public NeutronNetwork getSingleton() {\r
-        return singletonNetwork;\r
-    }\r
-\r
-    public boolean isSingleton() {\r
-        return (singletonNetwork != null);\r
-    }\r
-\r
-    public List<NeutronNetwork> getBulk() {\r
-        return bulkRequest;\r
-    }\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.northbound;
+
+import java.util.List;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+
+import org.opendaylight.controller.networkconfig.neutron.NeutronNetwork;
+
+@XmlRootElement
+@XmlAccessorType(XmlAccessType.NONE)
+public class NeutronNetworkRequest {
+    // See OpenStack Network API v2.0 Reference for description of
+    // annotated attributes
+
+    @XmlElement(name="network")
+    NeutronNetwork singletonNetwork;
+
+    @XmlElement(name="networks")
+    List<NeutronNetwork> bulkRequest;
+
+    NeutronNetworkRequest() {
+    }
+
+    NeutronNetworkRequest(List<NeutronNetwork> bulk) {
+        bulkRequest = bulk;
+        singletonNetwork = null;
+    }
+
+    NeutronNetworkRequest(NeutronNetwork net) {
+        singletonNetwork = net;
+    }
+
+    public NeutronNetwork getSingleton() {
+        return singletonNetwork;
+    }
+
+    public boolean isSingleton() {
+        return (singletonNetwork != null);
+    }
+
+    public List<NeutronNetwork> getBulk() {
+        return bulkRequest;
+    }
+}