BUG-865: remove yang-data-impl deprecated methods
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Uint64StringCodec.java
index 5c98112fb237fe669fbb2cb042b28bb76d414534..cec9d1a0c3e47689b94680425351ed1883ba3a99 100644 (file)
@@ -5,6 +5,7 @@
  * 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.impl.codec;
 
 import com.google.common.base.Optional;
@@ -12,10 +13,11 @@ import java.math.BigInteger;
 import org.opendaylight.yangtools.yang.data.api.codec.Uint64Codec;
 import org.opendaylight.yangtools.yang.model.api.type.UnsignedIntegerTypeDefinition;
 
-class Uint64StringCodec extends AbstractIntegerStringCodec<BigInteger, UnsignedIntegerTypeDefinition> implements Uint64Codec<String> {
+class Uint64StringCodec extends AbstractIntegerStringCodec<BigInteger, UnsignedIntegerTypeDefinition> implements
+        Uint64Codec<String> {
 
     protected Uint64StringCodec(final Optional<UnsignedIntegerTypeDefinition> typeDef) {
-        super(typeDef, BigInteger.class);
+        super(typeDef, extractRange(typeDef.orNull()), BigInteger.class);
     }
 
     @Override
@@ -27,4 +29,12 @@ class Uint64StringCodec extends AbstractIntegerStringCodec<BigInteger, UnsignedI
     public final String serialize(final BigInteger data) {
         return data == null ? "" : data.toString();
     }
-}
\ No newline at end of file
+
+    @Override
+    protected BigInteger convertValue(final Number value) {
+        if (value instanceof BigInteger) {
+            return (BigInteger) value;
+        }
+        return BigInteger.valueOf(value.longValue());
+    }
+}