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 / MagnesiumDataOutput.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 import java.io.DataOutput;
11 import java.io.IOException;
12 import java.math.BigInteger;
13
14 final class MagnesiumDataOutput extends AbstractMagnesiumDataOutput {
15     MagnesiumDataOutput(final DataOutput output) {
16         super(output);
17     }
18
19     @Override
20     short streamVersion() {
21         return TokenTypes.MAGNESIUM_VERSION;
22     }
23
24     @Override
25     void writeValue(final BigInteger value) throws IOException {
26         throw new IOException("BigInteger values are not supported");
27     }
28 }