Fixed bugs in naming conventions of packages.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / model / api / type / BinaryTypeDefinition.java
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/model/api/type/BinaryTypeDefinition.java b/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/model/api/type/BinaryTypeDefinition.java
deleted file mode 100644 (file)
index 9103173..0000000
+++ /dev/null
@@ -1,42 +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.api.type;\r
-\r
-import java.util.List;\r
-\r
-import org.opendaylight.controller.yang.model.api.TypeDefinition;\r
-\r
-/**\r
- * The binary built-in type represents any binary data, i.e., a sequence of\r
- * octets. <br>\r
- * <br>\r
- * Binary values are encoded with the base64 encoding scheme (see <a\r
- * href="https://tools.ietf.org/html/rfc4648#section-4">[RFC4648], Section\r
- * 4</a>). <br>\r
- * The canonical form of a binary value follows the rules in <a\r
- * href="https://tools.ietf.org/html/rfc4648">[RFC4648]</a>.\r
- * \r
- * <br>\r
- * <br>\r
- * This interface was modeled according to definition in <a\r
- * href="https://tools.ietf.org/html/rfc6020#section-9.8">[RFC-6020] The binary\r
- * Built-In Type</a>\r
- * \r
- */\r
-public interface BinaryTypeDefinition extends\r
-        TypeDefinition<BinaryTypeDefinition> {\r
-\r
-    /**\r
-     * Returns List of number of octets that binary value contains.\r
-     * \r
-     * @return List of number of octets that binary value contains.\r
-     * \r
-     * @see LengthConstraint\r
-     */\r
-    public List<LengthConstraint> getLengthConstraints();\r
-}\r