blob: d31f67b50234105a88e1004793b8607f83f9f3fb [file] [log] [blame]
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +05303 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Bharat saraswal96dfef02016-06-16 00:29:12 +053017package org.onosproject.yangutils.datamodel.utils;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053018
19/**
20 * Represents the status of resolvable entity.
21 */
22public enum ResolvableStatus {
23
24 /**
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053025 * Identifies that resolvable entity is unresolved.
26 */
27 UNRESOLVED,
28
29 /**
Vinod Kumar Sd4deb062016-04-15 18:08:57 +053030 * Identifies that resolvable entity's reference is linked.
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053031 */
Vinod Kumar Sd4deb062016-04-15 18:08:57 +053032 LINKED,
33
34 /**
35 * Identifies that resolvable entity is IntraFile resolved (i.e. complete
36 * linking with in the intra file).
37 */
38 INTRA_FILE_RESOLVED,
39
40 /**
41 * Identifies that resolvable entity is resolved.
42 */
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053043 RESOLVED,
44
45 /**
46 * Identifies that resolvable entity is inter file linked (i.e. complete
47 * linking with external files).
48 */
Vidyashree Ramadeac28b2016-06-20 15:12:43 +053049 INTER_FILE_LINKED,
50
51 /**
52 * Identifies that resolvable entity is referred node is not defined.
53 */
54 UNDEFINED
Vinod Kumar Sd4deb062016-04-15 18:08:57 +053055
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053056}