blob: 1bb99924e2ae62a145d9d3206abb715d0b1dd4be [file] [log] [blame]
Vinod Kumar S2ff139c2016-02-16 01:37:16 +05301/*
2 * Copyright 2016 Open Networking Laboratory
3 *
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 */
16package org.onosproject.yangutils.datamodel;
17
18import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
19import org.onosproject.yangutils.parser.Parsable;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053020import org.onosproject.yangutils.utils.YangConstructType;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053021
22/*-
23 * The "must" statement, which is optional, takes as an argument a string that
24 * contains an XPath expression. It is used to formally declare a constraint
25 * on valid data.
26 *
27 * When a datastore is validated, all "must" constraints are conceptually
28 * evaluated once for each data node in the data tree, and for all leafs with
29 * default values in use. If a data node does not exist in the data tree, and
30 * it does not have a default value, its "must" statements are not evaluated.
31 *
32 * All such constraints MUST evaluate to true for the data to be valid.
33 *
34 * The must's sub-statements
35 *
36 * +---------------+---------+-------------+------------------+
37 * | substatement | section | cardinality |data model mapping|
38 * +---------------+---------+-------------+------------------+
39 * | description | 7.19.3 | 0..1 | -string |
40 * | error-app-tag | 7.5.4.2 | 0..1 | -not supported |
41 * | error-message | 7.5.4.1 | 0..1 | -not supported |
42 * | reference | 7.19.4 | 0..1 | -string |
43 * +---------------+---------+-------------+------------------+
44 */
45
46/**
47 * Maintain information defined in YANG must.
48 */
49public class YangMust implements YangDesc, YangReference, Parsable {
50
51 /**
52 * Constraint info.
53 */
54 private String constratint;
55
56 /**
57 * Description string.
58 */
59 private String description;
60
61 /**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053062 * Reference string.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053063 */
64 private String reference;
65
66 /**
67 * Create a YANG must restriction.
68 */
69 public YangMust() {
70 }
71
72 /**
73 * Get the constraint.
74 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053075 * @return the constraint
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053076 */
77 public String getConstratint() {
78 return constratint;
79 }
80
81 /**
82 * Set the constraint.
83 *
84 * @param constratint the constraint to set
85 */
86 public void setConstratint(String constratint) {
87 this.constratint = constratint;
88 }
89
90 /**
91 * Get the description.
92 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053093 * @return the description
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053094 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053095 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053096 public String getDescription() {
97 return description;
98 }
99
100 /**
101 * Set the description.
102 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530103 * @param description set the description
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530104 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530105 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530106 public void setDescription(String description) {
107 this.description = description;
108 }
109
110 /**
111 * Get the textual reference.
112 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530113 * @return the reference
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530114 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530115 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530116 public String getReference() {
117 return reference;
118 }
119
120 /**
121 * Set the textual reference.
122 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530123 * @param reference the reference to set
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530124 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530125 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530126 public void setReference(String reference) {
127 this.reference = reference;
128 }
129
130 /**
131 * Returns the type of the parsed data.
132 *
133 * @return returns MUST_DATA
134 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530135 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530136 public YangConstructType getYangConstructType() {
137 return YangConstructType.MUST_DATA;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530138 }
139
140 /**
141 * Validate the data on entering the corresponding parse tree node.
142 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530143 * @throws DataModelException a violation of data model rules
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530144 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530145 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530146 public void validateDataOnEntry() throws DataModelException {
147 // TODO auto-generated method stub, to be implemented by parser
148 }
149
150 /**
151 * Validate the data on exiting the corresponding parse tree node.
152 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530153 * @throws DataModelException a violation of data model rules
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530154 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530155 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530156 public void validateDataOnExit() throws DataModelException {
157 // TODO auto-generated method stub, to be implemented by parser
158 }
159}