Check rc:yang-data template name duplications
[yangtools.git] / codec / yang-data-codec-binfmt / src / main / java / org / opendaylight / yangtools / yang / data / codec / binfmt / SodiumSR1DataInput.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.DataInput;
11 import java.io.IOException;
12 import java.math.BigInteger;
13
14 final class SodiumSR1DataInput extends AbstractMagnesiumDataInput {
15     SodiumSR1DataInput(final DataInput input) {
16         super(input);
17     }
18
19     @Override
20     @Deprecated(since = "11.0.0", forRemoval = true)
21     public NormalizedNodeStreamVersion getVersion() {
22         return NormalizedNodeStreamVersion.SODIUM_SR1;
23     }
24
25     @Override
26     BigInteger readBigInteger() throws IOException {
27         // FIXME: use string -> BigInteger cache
28         return new BigInteger(input.readUTF());
29     }
30 }