Fixed SchemaPath resolution for base YANG types.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Int8.java
index a263fd19091acaa65ef8af574c4f6fe18a66d4e7..8b0fbe1fa7148197807db9ebbfc2e6b1b997091f 100644 (file)
@@ -7,6 +7,8 @@
   */
 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;
@@ -16,46 +18,58 @@ import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
 /**
  * Implementation of Yang int8 built-in type.
  * <br>
- * int8 represents integer values between -128 and 127, inclusively. The Java counterpart of 
+ * int8 represents integer values between -128 and 127, inclusively. The Java counterpart of
  * Yang int8 built-in type is {@link Byte}.
- * 
+ *
  * @see AbstractSignedInteger
  */
 public class Int8 extends AbstractSignedInteger {
 
     private static final QName name = BaseTypes.constructQName("int8");
     private Byte defaultValue = null;
-    private static final String description = 
+    private static final String description =
             "represents integer values between -128 and 127, inclusively.";
-    
-    public Int8() {
+    private final IntegerTypeDefinition baseType;
+
+    private Int8() {
         super(name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");
+        this.baseType = this;
     }
 
-    public Int8(final Byte defaultValue) {
-        super(name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");
+    public Int8(final List<String> actualPath, final URI namespace,
+            final Date revision) {
+        super(actualPath, namespace, revision, name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");
+        this.baseType = new Int8();
+    }
+
+    public Int8(final List<String> actualPath, final URI namespace,
+            final Date revision, final Byte defaultValue) {
+        super(actualPath, namespace, revision, name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");
+        this.baseType = new Int8();
         this.defaultValue = defaultValue;
     }
 
-    public Int8(final List<RangeConstraint> rangeStatements,
+    public Int8(final List<String> actualPath, final URI namespace,
+            final Date revision, final List<RangeConstraint> rangeStatements,
             final String units, final Byte defaultValue) {
-        super(name, description, rangeStatements, units);
+        super(actualPath, namespace, revision, name, description, rangeStatements, units);
+        this.baseType = new Int8();
         this.defaultValue = defaultValue;
     }
 
     /*
      * (non-Javadoc)
-     * 
+     *
      * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()
      */
     @Override
     public IntegerTypeDefinition getBaseType() {
-        return this;
+        return baseType;
     }
 
     /*
      * (non-Javadoc)
-     * 
+     *
      * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()
      */
     @Override