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 / Int32.java
index 8d16e268c35c610750d6e129cbcc1d1ad6882e13..025448262e713a43f26356205f83fa107cc5e636 100644 (file)
@@ -7,12 +7,9 @@
  */
 package org.opendaylight.controller.yang.model.util;
 
-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 int32 built-in type. <br>
@@ -24,34 +21,14 @@ import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
  *
  */
 public final class Int32 extends AbstractSignedInteger {
-
     private static final QName name = BaseTypes.constructQName("int32");
-    private Integer defaultValue = null;
+    private final Integer defaultValue = null;
     private static final String description = "int32  represents integer values between -2147483648 and 2147483647, inclusively.";
     private final IntegerTypeDefinition baseType;
 
-    private Int32() {
-        super(name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
-        this.baseType = this;
-    }
-
     public Int32(final SchemaPath path) {
         super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
-        this.baseType = new Int32();
-    }
-
-    public Int32(final SchemaPath path, final Integer defaultValue) {
-        super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
-        this.baseType = new Int32();
-        this.defaultValue = defaultValue;
-    }
-
-    public Int32(final SchemaPath path,
-            final List<RangeConstraint> rangeStatements, final String units,
-            final Integer defaultValue) {
-        super(path, name, description, rangeStatements, units);
-        this.baseType = new Int32();
-        this.defaultValue = defaultValue;
+        this.baseType = this;
     }
 
     /*