cb84ef881095725fa8a7ec0d9e3f7f79380c21a4
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / NormalizedNodeInputOutput.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. 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.DataInput;
11 import java.io.DataOutput;
12 import java.io.IOException;
13 import javax.annotation.Nonnull;
14
15 public final class NormalizedNodeInputOutput {
16     private NormalizedNodeInputOutput() {
17         throw new UnsupportedOperationException();
18     }
19
20     public static NormalizedNodeDataInput newDataInput(@Nonnull final DataInput input) throws IOException {
21         return new NormalizedNodeInputStreamReader(input);
22     }
23
24     public static NormalizedNodeDataOutput newDataOutput(@Nonnull final DataOutput output) throws IOException {
25         return new NormalizedNodeOutputStreamWriter(output);
26     }
27 }