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%2FInt64.java;h=d51dcc7a8136912cf83188bd0d2c61becddfbb79;hp=92e92a94a276b8ee22b8c51932db82c5b40d4ea8;hb=970fb91c60c15a9b57e078f81aab7dde903addb9;hpb=d04b927ef78082525c3b0738126b6eb12e4a7a74 diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Int64.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Int64.java index 92e92a94a2..d51dcc7a81 100644 --- a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Int64.java +++ b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Int64.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 int64 built-in type.
@@ -22,34 +19,15 @@ import org.opendaylight.controller.yang.model.api.type.RangeConstraint; * */ public final class Int64 extends AbstractSignedInteger { - private static final QName name = BaseTypes.constructQName("int64"); - private Long defaultValue = null; + private final Long defaultValue = null; private static final String description = "int64 represents integer values between -9223372036854775808 and 9223372036854775807, inclusively."; private final IntegerTypeDefinition baseType; - private Int64() { - super(name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); - this.baseType = this; - } - public Int64(final SchemaPath path) { super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); - this.baseType = new Int64(); - } - - public Int64(final SchemaPath path, final Long defaultValue) { - super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); - this.baseType = new Int64(); - this.defaultValue = defaultValue; - } - - public Int64(final SchemaPath path, final List rangeStatements, - final String units, final Long defaultValue) { - super(path, name, description, rangeStatements, units); - this.baseType = new Int64(); - this.defaultValue = defaultValue; + this.baseType = this; } /*