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 / IntegerTypeDefinition.java
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/model/api/type/IntegerTypeDefinition.java b/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/model/api/type/IntegerTypeDefinition.java
deleted file mode 100644 (file)
index 5b40c49..0000000
+++ /dev/null
@@ -1,40 +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
- * IntegerTypeDefinition is interface which represents SIGNED Integer values\r
- * defined in Yang language. <br>\r
- * The integer built-in types in Yang are int8, int16, int32, int64. They\r
- * represent signed integers of different sizes: <br>\r
- * <ul>\r
- * <li>int8 represents integer values between -128 and 127, inclusively.</li>\r
- * <li>int16 represents integer values between -32768 and 32767, inclusively.</li>\r
- * <li>int32 represents integer values between -2147483648 and 2147483647,\r
- * inclusively.</li>\r
- * <li>int64 represents integer values between -9223372036854775808 and\r
- * 9223372036854775807, inclusively.</li>\r
- * </ul>\r
- * \r
- * The Integer Built-In Types are defined in <a\r
- * href="https://tools.ietf.org/html/rfc6020#section-9.2"> [RFC-6020]</a>\r
- */\r
-public interface IntegerTypeDefinition extends\r
-        TypeDefinition<IntegerTypeDefinition> {\r
-\r
-    /**\r
-     * Returns Range Constraints defined for given Integer Type.\r
-     * \r
-     * @return Range Constraints defined for given Integer Type.\r
-     */\r
-    List<RangeConstraint> getRangeStatements();\r
-}\r