Do not pretty-print body class
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / codec / Uint64Codec.java
index 564833f8764e3a39aeaa0b51ad327dfa25282b69..247cb0c9e39d18b98c0305d4608b29d4d98c708e 100644 (file)
@@ -1,11 +1,20 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.yangtools.yang.data.api.codec;
 
-import java.math.BigInteger;
+import org.opendaylight.yangtools.concepts.IllegalArgumentCodec;
+import org.opendaylight.yangtools.yang.common.Uint64;
 
+/**
+ * A codec between Uint64 and some other representation.
+ *
+ * @param <T> Output type of serialization.
+ */
+public interface Uint64Codec<T> extends IllegalArgumentCodec<T, Uint64> {
 
-public interface Uint64Codec<T> {
-
-    public T serialize(BigInteger data);
-
-    public BigInteger deserialize(T data);
 }