BUG-865: deprecate XmlUtils.resolveBaseTypeFrom()
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Uint16StringCodec.java
index 30480bd44f066d36b56607638c46fea6a959803e..e794ab2d9929a68d63796e0d79ffbae2010bb7e1 100644 (file)
@@ -5,16 +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.Uint16Codec;
 import org.opendaylight.yangtools.yang.model.api.type.UnsignedIntegerTypeDefinition;
 
-class Uint16StringCodec extends AbstractIntegerStringCodec<Integer, UnsignedIntegerTypeDefinition>
-        implements Uint16Codec<String> {
-    protected Uint16StringCodec(final Optional<UnsignedIntegerTypeDefinition> typeDef) {
-        super(typeDef, Integer.class);
+final class Uint16StringCodec extends AbstractIntegerStringCodec<Integer, UnsignedIntegerTypeDefinition> implements
+        Uint16Codec<String> {
+    Uint16StringCodec(final Optional<UnsignedIntegerTypeDefinition> typeDef) {
+        super(typeDef, extractRange(typeDef.orNull()), Integer.class);
     }
 
     @Override
@@ -26,4 +27,9 @@ class Uint16StringCodec extends AbstractIntegerStringCodec<Integer, UnsignedInte
     public 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();
+    }
+}