Modified construction of built-in yang types.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Int16.java
index 750dff5c7a5e9d88094c728f097a7e1c0ca81809..829cd140b18a04740e26ba75b4ab5c851e514866 100644 (file)
@@ -7,13 +7,9 @@
  */
 package org.opendaylight.controller.yang.model.util;
 
-import java.net.URI;
-import java.util.Date;
-import java.util.List;
-
 import org.opendaylight.controller.yang.common.QName;
+import org.opendaylight.controller.yang.model.api.SchemaPath;
 import org.opendaylight.controller.yang.model.api.type.IntegerTypeDefinition;
-import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
 
 /**
  * Implementation of Yang int16 built-in type. <br>
@@ -22,28 +18,21 @@ import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
  *
  * @see AbstractSignedInteger
  */
-public class Int16 extends AbstractSignedInteger {
-
+public final class Int16 extends AbstractSignedInteger {
     private static final QName name = BaseTypes.constructQName("int16");
-    private Short defaultValue = null;
-    private static final String description =
-            "int16  represents integer values between -32768 and 32767, inclusively.";
+    private final Short defaultValue = null;
+    private static final String description = "int16  represents integer values between -32768 and 32767, inclusively.";
+    private final IntegerTypeDefinition baseType;
 
-    public Int16(final List<String> actualPath, final URI namespace,
-            final Date revision) {
-        super(actualPath, namespace, revision, name, description, Short.MIN_VALUE, Short.MAX_VALUE, "");
-    }
+    public Int16(final SchemaPath path) {
+        super(path, name, description, Short.MIN_VALUE, Short.MAX_VALUE, "");
+        this.baseType = this;
 
-    public Int16(final List<String> actualPath, final URI namespace,
-            final Date revision, final List<RangeConstraint> rangeStatements,
-            final String units, final Short defaultValue) {
-        super(actualPath, namespace, revision, name, description, rangeStatements, units);
-        this.defaultValue = defaultValue;
     }
 
     @Override
     public IntegerTypeDefinition getBaseType() {
-        return this;
+        return baseType;
     }
 
     @Override