A race condition occurs between ARPHandler and HostTracker if the ARP
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / Status.java
1 /*\r
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.controller.yang.model.api;\r
9 \r
10 /**\r
11  * Enum describing YANG 'status' statement. If no status is specified, the\r
12  * default is CURRENT.\r
13  */\r
14 public enum Status {\r
15 \r
16     /**\r
17      * CURRENT means that the definition is current and valid.\r
18      */\r
19     CURRENT,\r
20 \r
21     /**\r
22      * DEPRECATED indicates an obsolete definition, but it permits new/\r
23      * continued implementation in order to foster interoperability with\r
24      * older/existing implementations.\r
25      */\r
26     DEPRECATED,\r
27 \r
28     /**\r
29      * OBSOLETE means the definition is obsolete and SHOULD NOT be implemented\r
30      * and/or can be removed from implementations.\r
31      */\r
32     OBSOLETE\r
33 \r
34 }\r