Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-codec-binfmt / src / main / java / org / opendaylight / yangtools / yang / data / codec / binfmt / SodiumSR1DataOutput.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.yangtools.yang.data.codec.binfmt;
9
10 import java.io.DataOutput;
11 import java.io.IOException;
12 import java.math.BigInteger;
13
14 final class SodiumSR1DataOutput extends AbstractMagnesiumDataOutput {
15     SodiumSR1DataOutput(final DataOutput output) {
16         super(output);
17     }
18
19     @Override
20     short streamVersion() {
21         return TokenTypes.SODIUM_SR1_VERSION;
22     }
23
24     @Override
25     void writeValue(final BigInteger value) throws IOException {
26         output.writeByte(MagnesiumValue.BIGINTEGER);
27         output.writeUTF(value.toString());
28     }
29 }