Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / model / util / AbstractInteger.java
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/AbstractInteger.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/AbstractInteger.java
new file mode 100644 (file)
index 0000000..5804022
--- /dev/null
@@ -0,0 +1,210 @@
+/*\r
+ * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
+ *\r
+ * This program and the accompanying materials are made available under the\r
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
+ * and is available at http://www.eclipse.org/legal/epl-v10.html\r
+ */\r
+package org.opendaylight.controller.model.util;\r
+\r
+import java.util.Collections;\r
+import java.util.List;\r
+\r
+import org.opendaylight.controller.model.api.type.IntegerTypeDefinition;\r
+import org.opendaylight.controller.model.api.type.RangeConstraint;\r
+import org.opendaylight.controller.yang.common.QName;\r
+import org.opendaylight.controller.yang.model.api.ExtensionDefinition;\r
+import org.opendaylight.controller.yang.model.api.SchemaPath;\r
+import org.opendaylight.controller.yang.model.api.Status;\r
+\r
+public abstract class AbstractInteger implements IntegerTypeDefinition {\r
+\r
+    private final QName name;\r
+    private final SchemaPath path;\r
+\r
+    private final String description;\r
+    private final String reference;\r
+\r
+    private String units = "";\r
+    private final List<RangeConstraint> rangeStatements;\r
+\r
+    public AbstractInteger(final QName name, final String description,\r
+            final String reference) {\r
+        super();\r
+        this.name = name;\r
+        this.description = description;\r
+        this.reference = reference;\r
+        this.path = BaseTypes.schemaPath(name);\r
+\r
+        final List<? extends RangeConstraint> emptyContstraints = Collections\r
+                .emptyList();\r
+        this.rangeStatements = Collections.unmodifiableList(emptyContstraints);\r
+    }\r
+\r
+    public AbstractInteger(QName name, String description, String reference,\r
+            List<RangeConstraint> rangeStatements) {\r
+        super();\r
+        this.name = name;\r
+        this.description = description;\r
+        this.reference = reference;\r
+        this.rangeStatements = rangeStatements;\r
+        this.path = BaseTypes.schemaPath(name);\r
+    }\r
+\r
+    public AbstractInteger(QName name, String description, String reference,\r
+            String units) {\r
+        super();\r
+        this.name = name;\r
+        this.description = description;\r
+        this.reference = reference;\r
+        this.units = units;\r
+        this.path = BaseTypes.schemaPath(name);\r
+\r
+        final List<? extends RangeConstraint> emptyContstraints = Collections\r
+                .emptyList();\r
+        this.rangeStatements = Collections.unmodifiableList(emptyContstraints);\r
+    }\r
+\r
+    public AbstractInteger(QName name, String description, String reference,\r
+            String units, List<RangeConstraint> rangeStatements) {\r
+        super();\r
+        this.name = name;\r
+        this.description = description;\r
+        this.reference = reference;\r
+        this.units = units;\r
+        this.rangeStatements = rangeStatements;\r
+        this.path = BaseTypes.schemaPath(name);\r
+    }\r
+\r
+    @Override\r
+    public String getUnits() {\r
+        return units;\r
+    }\r
+\r
+    @Override\r
+    public QName getQName() {\r
+        return name;\r
+    }\r
+\r
+    @Override\r
+    public SchemaPath getPath() {\r
+        return path;\r
+    }\r
+\r
+    @Override\r
+    public String getDescription() {\r
+        return description;\r
+    }\r
+\r
+    @Override\r
+    public String getReference() {\r
+        return reference;\r
+    }\r
+\r
+    @Override\r
+    public Status getStatus() {\r
+        return Status.CURRENT;\r
+    }\r
+\r
+    @Override\r
+    public List<RangeConstraint> getRangeStatements() {\r
+        return rangeStatements;\r
+    }\r
+\r
+    @Override\r
+    public List<ExtensionDefinition> getExtensionSchemaNodes() {\r
+        return Collections.emptyList();\r
+    }\r
+\r
+    @Override\r
+    public int hashCode() {\r
+        final int prime = 31;\r
+        int result = 1;\r
+        result = prime * result\r
+                + ((description == null) ? 0 : description.hashCode());\r
+        result = prime * result + ((name == null) ? 0 : name.hashCode());\r
+        result = prime * result + ((path == null) ? 0 : path.hashCode());\r
+        result = prime * result\r
+                + ((rangeStatements == null) ? 0 : rangeStatements.hashCode());\r
+        result = prime * result\r
+                + ((reference == null) ? 0 : reference.hashCode());\r
+        result = prime * result + ((units == null) ? 0 : units.hashCode());\r
+        return result;\r
+    }\r
+\r
+    @Override\r
+    public boolean equals(Object obj) {\r
+        if (this == obj) {\r
+            return true;\r
+        }\r
+        if (obj == null) {\r
+            return false;\r
+        }\r
+        if (getClass() != obj.getClass()) {\r
+            return false;\r
+        }\r
+        AbstractInteger other = (AbstractInteger) obj;\r
+        if (description == null) {\r
+            if (other.description != null) {\r
+                return false;\r
+            }\r
+        } else if (!description.equals(other.description)) {\r
+            return false;\r
+        }\r
+        if (name == null) {\r
+            if (other.name != null) {\r
+                return false;\r
+            }\r
+        } else if (!name.equals(other.name)) {\r
+            return false;\r
+        }\r
+        if (path == null) {\r
+            if (other.path != null) {\r
+                return false;\r
+            }\r
+        } else if (!path.equals(other.path)) {\r
+            return false;\r
+        }\r
+        if (rangeStatements == null) {\r
+            if (other.rangeStatements != null) {\r
+                return false;\r
+            }\r
+        } else if (!rangeStatements.equals(other.rangeStatements)) {\r
+            return false;\r
+        }\r
+        if (reference == null) {\r
+            if (other.reference != null) {\r
+                return false;\r
+            }\r
+        } else if (!reference.equals(other.reference)) {\r
+            return false;\r
+        }\r
+        if (units == null) {\r
+            if (other.units != null) {\r
+                return false;\r
+            }\r
+        } else if (!units.equals(other.units)) {\r
+            return false;\r
+        }\r
+        return true;\r
+    }\r
+\r
+    @Override\r
+    public String toString() {\r
+        StringBuilder builder = new StringBuilder();\r
+        builder.append("AbstractInteger [name=");\r
+        builder.append(name);\r
+        builder.append(", path=");\r
+        builder.append(path);\r
+        builder.append(", description=");\r
+        builder.append(description);\r
+        builder.append(", reference=");\r
+        builder.append(reference);\r
+        builder.append(", units=");\r
+        builder.append(units);\r
+        builder.append(", rangeStatements=");\r
+        builder.append(rangeStatements);\r
+        builder.append("]");\r
+        return builder.toString();\r
+    }\r
+}\r