X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang%2Fmodel%2Futil%2FInt64.java;fp=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang%2Fmodel%2Futil%2FInt64.java;h=4b05bc59e72a9f011f36809e864a9b767217451d;hb=11b0c275f1abb01bac9b122895a002c8e7905de1;hp=f858539dc343bdcb4714fecb34c313ce4f8c7d63;hpb=c073bcd7e39c1b393d2c2612bbd57334d10294f7;p=controller.git 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 f858539dc3..4b05bc59e7 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,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; @@ -15,7 +17,7 @@ import org.opendaylight.controller.yang.model.api.type.RangeConstraint; /** * Implementation of Yang int64 built-in type.
- * int64 represents integer values between -9223372036854775808 and 9223372036854775807, inclusively. + * int64 represents integer values between -9223372036854775808 and 9223372036854775807, inclusively. * The Java counterpart of Yang int64 built-in type is * {@link Long}. * @@ -24,27 +26,30 @@ public class Int64 extends AbstractSignedInteger { private static final QName name = BaseTypes.constructQName("int64"); private Long defaultValue = null; - private static final String description = + private static final String description = "int64 represents integer values between -9223372036854775808 and 9223372036854775807, inclusively."; - public Int64() { - super(name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); + 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 Long defaultValue) { - super(name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, ""); + 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, ""); this.defaultValue = defaultValue; } - public Int64(final List rangeStatements, + public Int64(final List actualPath, final URI namespace, + final Date revision, final List rangeStatements, final String units, final Long defaultValue) { - super(name, description, rangeStatements, units); + super(actualPath, namespace, revision, name, description, rangeStatements, units); this.defaultValue = defaultValue; } /* * (non-Javadoc) - * + * * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType() */ @Override @@ -54,7 +59,7 @@ public class Int64 extends AbstractSignedInteger { /* * (non-Javadoc) - * + * * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue() */ @Override