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=92e92a94a276b8ee22b8c51932db82c5b40d4ea8;hp=b22412012b0e8d54c8bbe3819dd09ba1678f255d;hb=0f393657ea0987d02556ea6e2a367d492a8e5a04;hpb=63680b9ec12d28383e544cdfc3af0599419d19d4 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 b22412012b..92e92a94a2 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,11 +7,10 @@ */ 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; @@ -22,7 +21,7 @@ import org.opendaylight.controller.yang.model.api.type.RangeConstraint; * {@link Long}. * */ -public class Int64 extends AbstractSignedInteger { +public final class Int64 extends AbstractSignedInteger { private static final QName name = BaseTypes.constructQName("int64"); private Long defaultValue = null; @@ -35,23 +34,20 @@ public class Int64 extends AbstractSignedInteger { this.baseType = this; } - public Int64(final List actualPath, final URI namespace, - final Date revision) { - super(actualPath, namespace, revision, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); + public Int64(final SchemaPath path) { + super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); this.baseType = new Int64(); } - public Int64(final List actualPath, final URI namespace, - final Date revision, final Long defaultValue) { - super(actualPath, namespace, revision, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); + 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 List actualPath, final URI namespace, - final Date revision, final List rangeStatements, + public Int64(final SchemaPath path, final List rangeStatements, final String units, final Long defaultValue) { - super(actualPath, namespace, revision, name, description, rangeStatements, units); + super(path, name, description, rangeStatements, units); this.baseType = new Int64(); this.defaultValue = defaultValue; }