Bug 2362: Added range validation as last part of deserialization.
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Int64StringCodec.java
index 3e6aa678cef9af8e58ca1453353e0969c3a42fe5..98be5782c35f9f3a7f43c6330784b901983ebadc 100644 (file)
@@ -1,9 +1,9 @@
 /*
- * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2015 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
+ * 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.impl.codec;
 
@@ -11,11 +11,10 @@ import com.google.common.base.Optional;
 import org.opendaylight.yangtools.yang.data.api.codec.Int64Codec;
 import org.opendaylight.yangtools.yang.model.api.type.IntegerTypeDefinition;
 
-class Int64StringCodec extends AbstractIntegerStringCodec<Long, IntegerTypeDefinition> implements
-        Int64Codec<String> {
+class Int64StringCodec extends AbstractIntegerStringCodec<Long, IntegerTypeDefinition> implements Int64Codec<String> {
 
     protected Int64StringCodec(final Optional<IntegerTypeDefinition> typeDef) {
-        super(typeDef, Long.class);
+        super(typeDef, extractRange(typeDef.orNull()), Long.class);
     }
 
     @Override
@@ -27,4 +26,9 @@ class Int64StringCodec extends AbstractIntegerStringCodec<Long, IntegerTypeDefin
     public final String serialize(final Long data) {
         return data == null ? "" : data.toString();
     }
-}
\ No newline at end of file
+
+    @Override
+    protected Long convertValue(final Number value) {
+        return value.longValue();
+    }
+}