Replaced package names from org.opendaylight.controller to org.opendaylight.yangtools...
[yangtools.git] / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / Status.java
diff --git a/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/Status.java b/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/Status.java
deleted file mode 100644 (file)
index 39aa0c8..0000000
+++ /dev/null
@@ -1,34 +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.yang.model.api;\r
-\r
-/**\r
- * Enum describing YANG 'status' statement. If no status is specified, the\r
- * default is CURRENT.\r
- */\r
-public enum Status {\r
-\r
-    /**\r
-     * CURRENT means that the definition is current and valid.\r
-     */\r
-    CURRENT,\r
-\r
-    /**\r
-     * DEPRECATED indicates an obsolete definition, but it permits new/\r
-     * continued implementation in order to foster interoperability with\r
-     * older/existing implementations.\r
-     */\r
-    DEPRECATED,\r
-\r
-    /**\r
-     * OBSOLETE means the definition is obsolete and SHOULD NOT be implemented\r
-     * and/or can be removed from implementations.\r
-     */\r
-    OBSOLETE\r
-\r
-}\r