Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / model / util / StringType.java
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/StringType.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/StringType.java
new file mode 100644 (file)
index 0000000..f640831
--- /dev/null
@@ -0,0 +1,282 @@
+/*\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.LengthConstraint;\r
+import org.opendaylight.controller.model.api.type.PatternConstraint;\r
+import org.opendaylight.controller.model.api.type.StringTypeDefinition;\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 class StringType implements StringTypeDefinition {\r
+\r
+    private final QName name = BaseTypes.constructQName("string");;\r
+    private final SchemaPath path;\r
+    private String defaultValue = "";\r
+    private final String description = "";\r
+    private final String reference = "";\r
+    private final List<LengthConstraint> lengthStatements;\r
+    private final List<PatternConstraint> patterns;\r
+    private String units = "";\r
+\r
+    public StringType() {\r
+        super();\r
+        path = BaseTypes.schemaPath(name);\r
+        this.lengthStatements = Collections.emptyList();\r
+        this.patterns = Collections.emptyList();\r
+    }\r
+\r
+    public StringType(List<LengthConstraint> lengthStatements,\r
+            List<PatternConstraint> patterns) {\r
+        super();\r
+        path = BaseTypes.schemaPath(name);\r
+        this.lengthStatements = Collections.unmodifiableList(lengthStatements);\r
+        this.patterns = Collections.unmodifiableList(patterns);\r
+    }\r
+\r
+    public StringType(final String defaultValue,\r
+            final List<LengthConstraint> lengthStatements,\r
+            final List<PatternConstraint> patterns, final String units) {\r
+        super();\r
+        path = BaseTypes.schemaPath(name);\r
+        this.defaultValue = defaultValue;\r
+        this.lengthStatements = lengthStatements;\r
+        this.patterns = patterns;\r
+        this.units = units;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()\r
+     */\r
+    @Override\r
+    public StringTypeDefinition getBaseType() {\r
+        return this;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getUnits()\r
+     */\r
+    @Override\r
+    public String getUnits() {\r
+        return units;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()\r
+     */\r
+    @Override\r
+    public Object getDefaultValue() {\r
+        return defaultValue;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getQName()\r
+     */\r
+    @Override\r
+    public QName getQName() {\r
+        return name;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getPath()\r
+     */\r
+    @Override\r
+    public SchemaPath getPath() {\r
+        return path;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getDescription()\r
+     */\r
+    @Override\r
+    public String getDescription() {\r
+        return description;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getReference()\r
+     */\r
+    @Override\r
+    public String getReference() {\r
+        return reference;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getStatus()\r
+     */\r
+    @Override\r
+    public Status getStatus() {\r
+        return Status.CURRENT;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see\r
+     * com.csico.yang.model.base.type.api.StringTypeDefinition#getLengthStatements\r
+     * ()\r
+     */\r
+    @Override\r
+    public List<LengthConstraint> getLengthStatements() {\r
+        return lengthStatements;\r
+    }\r
+\r
+    /*\r
+     * (non-Javadoc)\r
+     * \r
+     * @see\r
+     * com.csico.yang.model.base.type.api.StringTypeDefinition#getPatterns()\r
+     */\r
+    @Override\r
+    public List<PatternConstraint> getPatterns() {\r
+        return patterns;\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
+                + ((defaultValue == null) ? 0 : defaultValue.hashCode());\r
+        result = prime * result\r
+                + ((description == null) ? 0 : description.hashCode());\r
+        result = prime\r
+                * result\r
+                + ((lengthStatements == null) ? 0 : lengthStatements.hashCode());\r
+        result = prime * result + ((name == null) ? 0 : name.hashCode());\r
+        result = prime * result + ((path == null) ? 0 : path.hashCode());\r
+        result = prime * result\r
+                + ((patterns == null) ? 0 : patterns.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
+        StringType other = (StringType) obj;\r
+        if (defaultValue == null) {\r
+            if (other.defaultValue != null) {\r
+                return false;\r
+            }\r
+        } else if (!defaultValue.equals(other.defaultValue)) {\r
+            return false;\r
+        }\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 (lengthStatements == null) {\r
+            if (other.lengthStatements != null) {\r
+                return false;\r
+            }\r
+        } else if (!lengthStatements.equals(other.lengthStatements)) {\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 != null) && (other.path != null)) {\r
+            if (!path.getPath().equals(other.path.getPath())) {\r
+                return false;\r
+            }\r
+        }\r
+        if (patterns == null) {\r
+            if (other.patterns != null) {\r
+                return false;\r
+            }\r
+        } else if (!patterns.equals(other.patterns)) {\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("StringType [name=");\r
+        builder.append(name);\r
+        builder.append(", path=");\r
+        builder.append(path);\r
+        builder.append(", defaultValue=");\r
+        builder.append(defaultValue);\r
+        builder.append(", description=");\r
+        builder.append(description);\r
+        builder.append(", reference=");\r
+        builder.append(reference);\r
+        builder.append(", lengthStatements=");\r
+        builder.append(lengthStatements);\r
+        builder.append(", patterns=");\r
+        builder.append(patterns);\r
+        builder.append(", units=");\r
+        builder.append(units);\r
+        builder.append("]");\r
+        return builder.toString();\r
+    }\r
+}\r