Implementing VPP Renderer registration
[groupbasedpolicy.git] / renderers / vpp / src / main / java / org / opendaylight / groupbasedpolicy / renderer / vpp / util / General.java
index ab59e4b1e3cb975b494203e6d8c18292596c7149..41ce1748541af3e7154327768ac4b967887f9dce 100644 (file)
@@ -1,31 +1,32 @@
-/*\r
- * Copyright (c) 2016 Cisco Systems. 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.renderer.vpp.util;\r
-\r
-\r
-import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;\r
-import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;\r
-import org.opendaylight.yangtools.yang.binding.DataObject;\r
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;\r
-\r
-public class General {\r
-\r
-    /**\r
-     * Operations that can be executed over ConfigCommand. Operation names reflect operations used in WriteTransaction.\r
-     * For more information on these operations, please see the documentation in:\r
-     * <br>\r
-     * {@link WriteTransaction#put(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)}<br>\r
-     * {@link WriteTransaction#merge(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)}<br>\r
-     * {@link WriteTransaction#delete(LogicalDatastoreType, InstanceIdentifier)}<br>\r
-     *\r
-     */\r
-    public enum Operations {\r
-        PUT, DELETE, MERGE\r
-    }\r
-}\r
+/*
+ * Copyright (c) 2016 Cisco Systems. 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.renderer.vpp.util;
+
+import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
+import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
+import org.opendaylight.yangtools.yang.binding.DataObject;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
+
+public class General {
+
+    /**
+     * Operations that can be executed over ConfigCommand. Operation names reflect operations used
+     * in WriteTransaction.
+     * For more information on these operations, please see the documentation in:
+     * <br>
+     * {@link WriteTransaction#put(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)}
+     * <br>
+     * {@link WriteTransaction#merge(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)}
+     * <br>
+     * {@link WriteTransaction#delete(LogicalDatastoreType, InstanceIdentifier)}<br>
+     */
+    public enum Operations {
+        PUT, DELETE, MERGE
+    }
+}