X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang%2Fmodel%2Futil%2FInt32.java;h=025448262e713a43f26356205f83fa107cc5e636;hp=8d16e268c35c610750d6e129cbcc1d1ad6882e13;hb=9ceed566491d172e02220b04ec6869867f2f2473;hpb=3556bca9524bd19e738ac0d86c4e8b4d5add0a21 diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Int32.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Int32.java index 8d16e268c3..025448262e 100644 --- a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Int32.java +++ b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Int32.java @@ -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.
@@ -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 rangeStatements, final String units, - final Integer defaultValue) { - super(path, name, description, rangeStatements, units); - this.baseType = new Int32(); - this.defaultValue = defaultValue; + this.baseType = this; } /*