Convert neutron northbound classes to unix line delimiters
[controller.git] / opendaylight / northbound / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / northbound / NeutronFloatingIPRequest.java
index ca1389c724d90c36f8a23476daae064f24a998d5..efb86e0542e9b9fcec607b55bdc8fb9742cbf8bb 100644 (file)
@@ -1,52 +1,52 @@
-/*\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.NeutronFloatingIP;\r
-\r
-@XmlRootElement\r
-@XmlAccessorType(XmlAccessType.NONE)\r
-public class NeutronFloatingIPRequest {\r
-    // See OpenStack Network API v2.0 Reference for description of\r
-    // annotated attributes\r
-\r
-    @XmlElement(name="floatingip")\r
-    NeutronFloatingIP singletonFloatingIP;\r
-\r
-    @XmlElement(name="floatingips")\r
-    List<NeutronFloatingIP> bulkRequest;\r
-\r
-    NeutronFloatingIPRequest() {\r
-    }\r
-\r
-    NeutronFloatingIPRequest(List<NeutronFloatingIP> bulk) {\r
-        bulkRequest = bulk;\r
-        singletonFloatingIP = null;\r
-    }\r
-\r
-    NeutronFloatingIPRequest(NeutronFloatingIP singleton) {\r
-        bulkRequest = null;\r
-        singletonFloatingIP = singleton;\r
-    }\r
-\r
-    public NeutronFloatingIP getSingleton() {\r
-        return singletonFloatingIP;\r
-    }\r
-\r
-    public boolean isSingleton() {\r
-        return (singletonFloatingIP != null);\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.NeutronFloatingIP;
+
+@XmlRootElement
+@XmlAccessorType(XmlAccessType.NONE)
+public class NeutronFloatingIPRequest {
+    // See OpenStack Network API v2.0 Reference for description of
+    // annotated attributes
+
+    @XmlElement(name="floatingip")
+    NeutronFloatingIP singletonFloatingIP;
+
+    @XmlElement(name="floatingips")
+    List<NeutronFloatingIP> bulkRequest;
+
+    NeutronFloatingIPRequest() {
+    }
+
+    NeutronFloatingIPRequest(List<NeutronFloatingIP> bulk) {
+        bulkRequest = bulk;
+        singletonFloatingIP = null;
+    }
+
+    NeutronFloatingIPRequest(NeutronFloatingIP singleton) {
+        bulkRequest = null;
+        singletonFloatingIP = singleton;
+    }
+
+    public NeutronFloatingIP getSingleton() {
+        return singletonFloatingIP;
+    }
+
+    public boolean isSingleton() {
+        return (singletonFloatingIP != null);
+    }
+}