Fix fileEncoding violations for checkstyle
[groupbasedpolicy.git] / neutron-vpp-mapper / src / main / java / org / opendaylight / groupbasedpolicy / neutron / vpp / mapper / util / HostconfigUtil.java
index 487c9c75639c354d96e51deef7ed23bfecf4c38b..3a0b71b366e0584bd7d9c5e2f9cc49083dfe2db9 100644 (file)
@@ -1,72 +1,72 @@
-/*\r
- * Copyright (c) 2016 Cisco Systems, Inc. and others. 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.groupbasedpolicy.neutron.vpp.mapper.util;\r
-\r
-import java.util.List;\r
-\r
-import org.opendaylight.groupbasedpolicy.neutron.vpp.mapper.SocketInfo;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.hostconfig.rev150712.hostconfig.attributes.hostconfigs.Hostconfig;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.hostconfig.rev150712.hostconfig.attributes.hostconfigs.HostconfigBuilder;\r
-import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;\r
-\r
-import com.google.common.base.Preconditions;\r
-import com.google.common.collect.Lists;\r
-import com.google.gson.JsonArray;\r
-import com.google.gson.JsonObject;\r
-\r
-\r
-public class HostconfigUtil {\r
-\r
-    public static final String L2_HOST_TYPE = "ODL L2";\r
-    private static final String VHOST_USER = "vhostuser";\r
-    private static final String VNIC_TYPE = "normal";\r
-    private static final String HAS_DATAPATH_TYPE_NETDEV = "False";\r
-    private static final String SUPPORT_VHOST_USER = "True";\r
-    private static final String VHOSTUSER_MODE = "server";\r
-    private static final List<String> supportedNetworkTypes = Lists.newArrayList("local", "vlan", "vxlan", "gre");\r
-\r
-    public static Hostconfig createHostconfigsDataFor(NodeId nodeId, SocketInfo socketInfo) {\r
-        Preconditions.checkNotNull(nodeId);\r
-        Preconditions.checkNotNull(socketInfo);\r
-        JsonObject odlL2 = new JsonObject();\r
-        odlL2.add("allowed_network_types", buildSupportedNetworkTypes());\r
-        odlL2.add("supported_vnic_types", buildSupportedVnicTypes(socketInfo));\r
-        return new HostconfigBuilder().setHostId(nodeId.getValue())\r
-            .setHostType(L2_HOST_TYPE)\r
-            .setConfig(odlL2.toString())\r
-            .build();\r
-    }\r
-\r
-    private static JsonArray buildSupportedNetworkTypes() {\r
-        JsonArray networkTypes = new JsonArray();\r
-        supportedNetworkTypes.forEach(networkTypes::add);\r
-        return networkTypes;\r
-    }\r
-\r
-    private static JsonArray buildSupportedVnicTypes(SocketInfo socketInfo) {\r
-        JsonArray supportedVnicTypes = new JsonArray();\r
-        JsonObject supportedVnicType = new JsonObject();\r
-        supportedVnicType.addProperty("vnic_type", VNIC_TYPE);\r
-        supportedVnicType.addProperty("vif_type", VHOST_USER);\r
-        supportedVnicType.add("vif_details", buildVifDetails(socketInfo));\r
-        supportedVnicTypes.add(supportedVnicType);\r
-        return supportedVnicTypes;\r
-    }\r
-\r
-    private static JsonObject buildVifDetails(SocketInfo socketInfo) {\r
-        JsonObject vifDetails = new JsonObject();\r
-        vifDetails.addProperty("has_datapath_type_netdev", HAS_DATAPATH_TYPE_NETDEV);\r
-        vifDetails.addProperty("support_vhost_user", SUPPORT_VHOST_USER);\r
-        vifDetails.addProperty("port_prefix", socketInfo.getSocketPrefix());\r
-        vifDetails.addProperty("vhostuser_socket_dir", socketInfo.getSocketPath());\r
-        vifDetails.addProperty("vhostuser_mode", VHOSTUSER_MODE);\r
-        vifDetails.addProperty("vhostuser_socket", socketInfo.getVhostUserSocket());\r
-        return vifDetails;\r
-    }\r
-}\r
+/*
+ * Copyright (c) 2016 Cisco Systems, Inc. and others. 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.groupbasedpolicy.neutron.vpp.mapper.util;
+
+import java.util.List;
+
+import org.opendaylight.groupbasedpolicy.neutron.vpp.mapper.SocketInfo;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.hostconfig.rev150712.hostconfig.attributes.hostconfigs.Hostconfig;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.hostconfig.rev150712.hostconfig.attributes.hostconfigs.HostconfigBuilder;
+import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
+
+import com.google.common.base.Preconditions;
+import com.google.common.collect.Lists;
+import com.google.gson.JsonArray;
+import com.google.gson.JsonObject;
+
+
+public class HostconfigUtil {
+
+    public static final String L2_HOST_TYPE = "ODL L2";
+    private static final String VHOST_USER = "vhostuser";
+    private static final String VNIC_TYPE = "normal";
+    private static final String HAS_DATAPATH_TYPE_NETDEV = "False";
+    private static final String SUPPORT_VHOST_USER = "True";
+    private static final String VHOSTUSER_MODE = "server";
+    private static final List<String> supportedNetworkTypes = Lists.newArrayList("local", "vlan", "vxlan", "gre");
+
+    public static Hostconfig createHostconfigsDataFor(NodeId nodeId, SocketInfo socketInfo) {
+        Preconditions.checkNotNull(nodeId);
+        Preconditions.checkNotNull(socketInfo);
+        JsonObject odlL2 = new JsonObject();
+        odlL2.add("allowed_network_types", buildSupportedNetworkTypes());
+        odlL2.add("supported_vnic_types", buildSupportedVnicTypes(socketInfo));
+        return new HostconfigBuilder().setHostId(nodeId.getValue())
+            .setHostType(L2_HOST_TYPE)
+            .setConfig(odlL2.toString())
+            .build();
+    }
+
+    private static JsonArray buildSupportedNetworkTypes() {
+        JsonArray networkTypes = new JsonArray();
+        supportedNetworkTypes.forEach(networkTypes::add);
+        return networkTypes;
+    }
+
+    private static JsonArray buildSupportedVnicTypes(SocketInfo socketInfo) {
+        JsonArray supportedVnicTypes = new JsonArray();
+        JsonObject supportedVnicType = new JsonObject();
+        supportedVnicType.addProperty("vnic_type", VNIC_TYPE);
+        supportedVnicType.addProperty("vif_type", VHOST_USER);
+        supportedVnicType.add("vif_details", buildVifDetails(socketInfo));
+        supportedVnicTypes.add(supportedVnicType);
+        return supportedVnicTypes;
+    }
+
+    private static JsonObject buildVifDetails(SocketInfo socketInfo) {
+        JsonObject vifDetails = new JsonObject();
+        vifDetails.addProperty("has_datapath_type_netdev", HAS_DATAPATH_TYPE_NETDEV);
+        vifDetails.addProperty("support_vhost_user", SUPPORT_VHOST_USER);
+        vifDetails.addProperty("port_prefix", socketInfo.getSocketPrefix());
+        vifDetails.addProperty("vhostuser_socket_dir", socketInfo.getSocketPath());
+        vifDetails.addProperty("vhostuser_mode", VHOSTUSER_MODE);
+        vifDetails.addProperty("vhostuser_socket", socketInfo.getVhostUserSocket());
+        return vifDetails;
+    }
+}