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%2FAbstractUnsignedInteger.java;h=a56697e97a49e6327074e2dfc614eb8c5dcd64a3;hb=970fb91c60c15a9b57e078f81aab7dde903addb9;hp=013d80d79911c127ef4f3823a2fc996bf70c044f;hpb=d04b927ef78082525c3b0738126b6eb12e4a7a74;p=controller.git diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/AbstractUnsignedInteger.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/AbstractUnsignedInteger.java index 013d80d799..a56697e97a 100644 --- a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/AbstractUnsignedInteger.java +++ b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/AbstractUnsignedInteger.java @@ -30,65 +30,44 @@ import org.opendaylight.controller.yang.model.api.type.UnsignedIntegerTypeDefini * * */ -public abstract class AbstractUnsignedInteger implements - UnsignedIntegerTypeDefinition { +public abstract class AbstractUnsignedInteger implements UnsignedIntegerTypeDefinition { + private static final long MIN_VALUE = 0; private final QName name; private final SchemaPath path; private final String description; private final String reference = "https://tools.ietf.org/html/rfc6020#section-9.2"; - private final String units; private final List rangeStatements; - protected AbstractUnsignedInteger(final QName name, - final String description, final Number minRange, - final Number maxRange, final String units) { - this.name = name; - this.description = description; - this.path = BaseTypes.schemaPath(name); - this.units = units; - this.rangeStatements = new ArrayList(); - final String rangeDescription = "Integer values between " + minRange - + " and " + maxRange + ", inclusively."; - this.rangeStatements.add(BaseConstraints.rangeConstraint(minRange, - maxRange, rangeDescription, - "https://tools.ietf.org/html/rfc6020#section-9.2.4")); - } - /** * - * @param actualPath - * @param namespace - * @param revision - * @param name + * @param path uint type schema path + * @param name qname * @param description - * @param minRange * @param maxRange * @param units */ - public AbstractUnsignedInteger(final SchemaPath path, final QName name, - final String description, final Number minRange, + public AbstractUnsignedInteger(final SchemaPath path, final QName name, final String description, final Number maxRange, final String units) { this.name = name; this.description = description; this.path = path; this.units = units; this.rangeStatements = new ArrayList(); - final String rangeDescription = "Integer values between " + minRange - + " and " + maxRange + ", inclusively."; - this.rangeStatements.add(BaseConstraints.rangeConstraint(minRange, - maxRange, rangeDescription, + final String rangeDescription = "Integer values between " + MIN_VALUE + " and " + maxRange + ", inclusively."; + this.rangeStatements.add(BaseConstraints.rangeConstraint(MIN_VALUE, maxRange, rangeDescription, "https://tools.ietf.org/html/rfc6020#section-9.2.4")); } /** - * @param name + * + * @param path uint type schema path + * @param name qname * @param description * @param rangeStatements * @param units */ - public AbstractUnsignedInteger(final SchemaPath path, final QName name, - final String description, + public AbstractUnsignedInteger(final SchemaPath path, final QName name, final String description, final List rangeStatements, final String units) { this.name = name; this.description = description; @@ -141,14 +120,11 @@ public abstract class AbstractUnsignedInteger implements public int hashCode() { final int prime = 31; int result = 1; - result = prime * result - + ((description == null) ? 0 : description.hashCode()); + result = prime * result + ((description == null) ? 0 : description.hashCode()); result = prime * result + ((name == null) ? 0 : name.hashCode()); result = prime * result + ((path == null) ? 0 : path.hashCode()); - result = prime * result - + ((rangeStatements == null) ? 0 : rangeStatements.hashCode()); - result = prime * result - + ((reference == null) ? 0 : reference.hashCode()); + result = prime * result + ((rangeStatements == null) ? 0 : rangeStatements.hashCode()); + result = prime * result + ((reference == null) ? 0 : reference.hashCode()); result = prime * result + ((units == null) ? 0 : units.hashCode()); return result; }