blob: 597a36c7da3bed398e3a7f0912a953ebd25a0675 [file] [log] [blame]
Vinod Kumar S2ff139c2016-02-16 01:37:16 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vinod Kumar S2ff139c2016-02-16 01:37:16 +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 */
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/**
Bharat saraswald9822e92016-04-05 15:13:44 +053047 * Represents information defined in YANG must.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053048 */
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 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053067 * Creates a YANG must restriction.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053068 */
69 public YangMust() {
70 }
71
72 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053073 * Returns the constraint.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053074 *
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 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053082 * Sets the constraint.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053083 *
84 * @param constratint the constraint to set
85 */
86 public void setConstratint(String constratint) {
87 this.constratint = constratint;
88 }
89
90 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053091 * Returns the description.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053092 *
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 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530101 * Sets the description.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530102 *
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 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530111 * Returns the textual reference.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530112 *
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 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530121 * Sets the textual reference.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530122 *
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 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530141 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530142 *
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 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530151 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530152 *
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}