Fixed bugs in naming conventions of packages.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / model / util / BinaryType.java
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/BinaryType.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/BinaryType.java
deleted file mode 100644 (file)
index 2ee873b..0000000
+++ /dev/null
@@ -1,271 +0,0 @@
-/*\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.ArrayList;\r
-import java.util.Collections;\r
-import java.util.List;\r
-\r
-import org.opendaylight.controller.model.api.type.BinaryTypeDefinition;\r
-import org.opendaylight.controller.model.api.type.LengthConstraint;\r
-import org.opendaylight.controller.yang.common.QName;\r
-import org.opendaylight.controller.yang.model.api.SchemaPath;\r
-import org.opendaylight.controller.yang.model.api.Status;\r
-import org.opendaylight.controller.yang.model.api.UnknownSchemaNode;\r
-\r
-/**\r
- * The <code>default</code> implementation of Binary Type Definition interface.\r
- * \r
- * @see BinaryTypeDefinition\r
- */\r
-public class BinaryType implements BinaryTypeDefinition {\r
-\r
-    private final QName name = BaseTypes.constructQName("binary");\r
-    private final SchemaPath path = BaseTypes.schemaPath(name);\r
-    private final String description = "The binary built-in type represents any binary data, i.e., a sequence of octets.";\r
-    private final String reference = "https://tools.ietf.org/html/rfc6020#section-9.8";\r
-\r
-    private List<Byte> bytes;\r
-    private final List<LengthConstraint> lengthConstraints;\r
-    private String units = "";\r
-\r
-    /**\r
-     * \r
-     */\r
-    public BinaryType() {\r
-        super();\r
-        \r
-        final List<LengthConstraint> constraints = new ArrayList<LengthConstraint>();\r
-        constraints.add(BaseConstraints.lengthConstraint(0, Long.MAX_VALUE, "", ""));\r
-        lengthConstraints = Collections.unmodifiableList(constraints);\r
-        bytes = Collections.emptyList();\r
-    }\r
-\r
-    /**\r
-     * \r
-     * \r
-     * @param bytes\r
-     * @param lengthConstraints\r
-     * @param units\r
-     */\r
-    public BinaryType(final List<Byte> bytes,\r
-            final List<LengthConstraint> lengthConstraints, final String units) {\r
-        super();\r
-        \r
-        if ((lengthConstraints == null) || (lengthConstraints.isEmpty())) {\r
-            final List<LengthConstraint> constraints = new ArrayList<LengthConstraint>();\r
-            constraints.add(BaseConstraints.lengthConstraint(0, Long.MAX_VALUE, "", ""));\r
-            this.lengthConstraints = Collections.unmodifiableList(constraints);\r
-        } else {\r
-            this.lengthConstraints = Collections.unmodifiableList(lengthConstraints);\r
-        }\r
-        \r
-        this.bytes = Collections.unmodifiableList(bytes);\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 BinaryTypeDefinition 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 bytes;\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
-     * org.opendaylight.controller.yang.model.base.type.api.BinaryTypeDefinition#getLengthConstraint\r
-     * ()\r
-     */\r
-    @Override\r
-    public List<LengthConstraint> getLengthConstraints() {\r
-        return lengthConstraints;\r
-    }\r
-\r
-    @Override\r
-    public List<UnknownSchemaNode> getUnknownSchemaNodes() {\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 + ((bytes == null) ? 0 : bytes.hashCode());\r
-        result = prime * result\r
-                + ((description == null) ? 0 : description.hashCode());\r
-        result = prime\r
-                * result\r
-                + ((lengthConstraints == null) ? 0 : lengthConstraints.hashCode());\r
-        result = prime * result + ((name == null) ? 0 : name.hashCode());\r
-        result = prime * result + ((path == null) ? 0 : path.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
-        BinaryType other = (BinaryType) obj;\r
-        if (bytes == null) {\r
-            if (other.bytes != null) {\r
-                return false;\r
-            }\r
-        } else if (!bytes.equals(other.bytes)) {\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 (lengthConstraints == null) {\r
-            if (other.lengthConstraints != null) {\r
-                return false;\r
-            }\r
-        } else if (!lengthConstraints.equals(other.lengthConstraints)) {\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 (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("BinaryType [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(", bytes=");\r
-        builder.append(bytes);\r
-        builder.append(", lengthConstraints=");\r
-        builder.append(lengthConstraints);\r
-        builder.append(", units=");\r
-        builder.append(units);\r
-        builder.append("]");\r
-        return builder.toString();\r
-    }\r
-}\r