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