Fix license header violations in yang-data-impl
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Int32StringCodec.java
index b2575c6192294b177ef100c256eaad07f359bad9..3b42dd0b5c77691fa53bdb1fffe81c6919c12406 100644 (file)
@@ -5,17 +5,17 @@
  * 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;
 import org.opendaylight.yangtools.yang.data.api.codec.Int32Codec;
 import org.opendaylight.yangtools.yang.model.api.type.IntegerTypeDefinition;
 
-class Int32StringCodec extends AbstractIntegerStringCodec<Integer, IntegerTypeDefinition> implements
-        Int32Codec<String> {
+class Int32StringCodec extends AbstractIntegerStringCodec<Integer, IntegerTypeDefinition> implements Int32Codec<String> {
 
     protected Int32StringCodec(final Optional<IntegerTypeDefinition> typeDef) {
-        super(typeDef, Integer.class);
+        super(typeDef, extractRange(typeDef.orNull()), Integer.class);
     }
 
     @Override
@@ -27,4 +27,9 @@ class Int32StringCodec extends AbstractIntegerStringCodec<Integer, IntegerTypeDe
     public final String serialize(final Integer data) {
         return data == null ? "" : data.toString();
     }
-}
\ No newline at end of file
+
+    @Override
+    protected Integer convertValue(final Number value) {
+        return value.intValue();
+    }
+}