Switch default stream output to Magnesium
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / NeonSR2Tokens.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore.node.utils.stream;
9
10 /**
11  * Tokens used in Neon SR2 encoding. Note that Neon SR2 builds on top of Lithium, hence the token values must never
12  * overlap.
13  */
14 final class NeonSR2Tokens {
15     static final byte IS_QNAME_CODE = 4;
16     static final byte IS_QNAME_VALUE = 5;
17     static final byte IS_AUGMENT_CODE = 6;
18     static final byte IS_AUGMENT_VALUE = 7;
19     static final byte IS_MODULE_CODE = 8;
20     static final byte IS_MODULE_VALUE = 9;
21
22     private NeonSR2Tokens() {
23
24     }
25 }