blob: 6fba390e554a73a79268d0b244b9d036c80a44c0 [file] [log] [blame]
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +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
17package org.onosproject.yangutils.datamodel;
18
19import java.util.LinkedList;
20import java.util.List;
Bharat saraswald9822e92016-04-05 15:13:44 +053021
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053022import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
Bharat saraswal96dfef02016-06-16 00:29:12 +053023import org.onosproject.yangutils.datamodel.utils.Parsable;
24import org.onosproject.yangutils.datamodel.utils.YangConstructType;
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053025
26import static org.onosproject.yangutils.datamodel.utils.DataModelUtils.detectCollidingChildUtil;
27
28/*
29 * Reference RFC 6020.
30 *
31 * YANG allows the definition of notifications suitable for NETCONF.
32 * YANG data definition statements are used to model the content of the
33 * notification.
34 *
35 * The "notification" statement is used to define a NETCONF
36 * notification. It takes one argument, which is an identifier,
37 * followed by a block of substatements that holds detailed notification
38 * information. The "notification" statement defines a notification
39 * node in the schema tree.
40 *
41 * If a leaf in the notification tree has a "mandatory" statement with
42 * the value "true", the leaf MUST be present in a NETCONF notification.
43 *
44 * If a leaf in the notification tree has a default value, the NETCONF
45 * client MUST use this value in the same cases as described in
46 * Section 7.6.1. In these cases, the client MUST operationally behave
47 * as if the leaf was present in the NETCONF notification with the
48 * default value as its value.
49 *
50 * If a "config" statement is present for any node in the notification
51 * tree, the "config" statement is ignored.
52 *
53 * The notification's substatements
54 *
55 * +--------------+---------+-------------+------------------+
56 * | substatement | section | cardinality |data model mapping|
57 * +--------------+---------+-------------+------------------+
58 * | anyxml | 7.10 | 0..n | -not supported |
59 * | choice | 7.9 | 0..n | -child nodes |
60 * | container | 7.5 | 0..n | -child nodes |
61 * | description | 7.19.3 | 0..1 | -string |
62 * | grouping | 7.11 | 0..n | -child nodes |
63 * | if-feature | 7.18.2 | 0..n | -TODO |
64 * | leaf | 7.6 | 0..n | -YangLeaf |
65 * | leaf-list | 7.7 | 0..n | -YangLeafList |
66 * | list | 7.8 | 0..n | -child nodes |
67 * | reference | 7.19.4 | 0..1 | -string |
68 * | status | 7.19.2 | 0..1 | -YangStatus |
69 * | typedef | 7.3 | 0..n | -child nodes |
70 * | uses | 7.12 | 0..n | -child nodes |
71 * +--------------+---------+-------------+------------------+
72 */
73
74/**
Bharat saraswald9822e92016-04-05 15:13:44 +053075 * Represents data model node to maintain information defined in YANG notification.
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053076 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053077public class YangNotification
78 extends YangNode
Bharat saraswalab4c6ba2016-05-17 14:19:38 +053079 implements YangLeavesHolder, YangCommonInfo, Parsable, CollisionDetector, YangAugmentationHolder {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053080
Bharat saraswal96dfef02016-06-16 00:29:12 +053081 private static final long serialVersionUID = 806201611L;
82
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +053083 /**
84 * Name of the notification.
85 */
86 private String name;
87
88 /**
89 * Description of notification.
90 */
91 private String description;
92
93 /**
94 * List of leaves contained.
95 */
96 private List<YangLeaf> listOfLeaf;
97
98 /**
99 * List of leaf-lists contained.
100 */
101 private List<YangLeafList> listOfLeafList;
102
103 /**
104 * Reference of the module.
105 */
106 private String reference;
107
108 /**
109 * Status of the node.
110 */
111 private YangStatusType status = YangStatusType.CURRENT;
112
113 /**
114 * Create a notification node.
115 */
116 public YangNotification() {
117 super(YangNodeType.NOTIFICATION_NODE);
118 listOfLeaf = new LinkedList<YangLeaf>();
119 listOfLeafList = new LinkedList<YangLeafList>();
120 }
121
122 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530123 public void detectCollidingChild(String identifierName, YangConstructType dataType)
124 throws DataModelException {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530125 // Detect colliding child.
126 detectCollidingChildUtil(identifierName, dataType, this);
127 }
128
129 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530130 public void detectSelfCollision(String identifierName, YangConstructType dataType)
131 throws DataModelException {
Bharat saraswal96dfef02016-06-16 00:29:12 +0530132 if (getName().equals(identifierName)) {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530133 throw new DataModelException("YANG file error: Duplicate input identifier detected, same as notification \""
Bharat saraswal96dfef02016-06-16 00:29:12 +0530134 + getName() + "\"");
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530135 }
136 }
137
138 @Override
139 public YangConstructType getYangConstructType() {
140 return YangConstructType.NOTIFICATION_DATA;
141 }
142
143 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530144 public void validateDataOnEntry()
145 throws DataModelException {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530146 //TODO: implement the method.
147 }
148
149 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530150 public void validateDataOnExit()
151 throws DataModelException {
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530152 //TODO: implement the method.
153 }
154
155 @Override
156 public String getDescription() {
157 return description;
158 }
159
160 @Override
161 public void setDescription(String description) {
162 this.description = description;
163 }
164
165 @Override
166 public List<YangLeaf> getListOfLeaf() {
167 return listOfLeaf;
168 }
169
170 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530171 public void setListOfLeaf(List<YangLeaf> leafsList) {
172 listOfLeaf = leafsList;
173 }
174
175 @Override
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530176 public void addLeaf(YangLeaf leaf) {
177 getListOfLeaf().add(leaf);
178 }
179
180 @Override
181 public List<YangLeafList> getListOfLeafList() {
182 return listOfLeafList;
183 }
184
185 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530186 public void setListOfLeafList(List<YangLeafList> listOfLeafList) {
187 this.listOfLeafList = listOfLeafList;
188 }
189
190 @Override
Gaurav Agrawale3ed0d92016-03-23 19:04:17 +0530191 public void addLeafList(YangLeafList leafList) {
192 getListOfLeafList().add(leafList);
193 }
194
195 @Override
196 public String getName() {
197 return name;
198 }
199
200 @Override
201 public void setName(String name) {
202 this.name = name;
203 }
204
205 @Override
206 public String getReference() {
207 return reference;
208 }
209
210 @Override
211 public void setReference(String reference) {
212 this.reference = reference;
213 }
214
215 @Override
216 public YangStatusType getStatus() {
217 return status;
218 }
219
220 @Override
221 public void setStatus(YangStatusType status) {
222 this.status = status;
223 }
224}