Switch default output stream version
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / NodeTypes.java
index 3ff6efbb0577b28a5b6d90b5bbcb56da5216e83f..dc034cc7ae8d870ce6836dd83215075a23103bd9 100644 (file)
@@ -1,17 +1,14 @@
 /*
+ * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  All rights reserved.
  *
- *  Copyright (c) 2014 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
- *
+ * 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.cluster.datastore.node.utils.stream;
 
-public class NodeTypes {
-
+final class NodeTypes {
     public static final byte LEAF_NODE = 1;
     public static final byte LEAF_SET = 2;
     public static final byte LEAF_SET_ENTRY_NODE = 3;
@@ -25,5 +22,10 @@ public class NodeTypes {
     public static final byte AUGMENTATION_NODE = 11;
     public static final byte ANY_XML_NODE = 12;
     public static final byte END_NODE = 13;
+    public static final byte ORDERED_LEAF_SET = 14;
+    public static final byte YANG_MODELED_ANY_XML_NODE = 15;
 
+    private NodeTypes() {
+        throw new UnsupportedOperationException("utility class");
+    }
 }