Merge "CM SUBSCRIPTION: add new subscription for non existing xpath"
[cps.git] / cps-service / src / main / java / org / onap / cps / spi / model / DataNode.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020-2022 Nordix Foundation.
4  * Modifications Copyright (C) 2021 Bell Canada.
5  * Modifications Copyright (C) 2021 Pantheon.tech
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.cps.spi.model;
24
25 import java.io.Serializable;
26 import java.util.Collection;
27 import java.util.Collections;
28 import java.util.Map;
29 import lombok.AccessLevel;
30 import lombok.EqualsAndHashCode;
31 import lombok.Getter;
32 import lombok.Setter;
33
34 @Setter(AccessLevel.PROTECTED)
35 @Getter
36 @EqualsAndHashCode
37 public class DataNode implements Serializable {
38
39     private static final long serialVersionUID = 1482619410918597467L;
40
41     DataNode() {}
42
43     private String dataspace;
44     private String schemaSetName;
45     private String anchorName;
46     private ModuleReference moduleReference;
47     private String xpath;
48     private String moduleNamePrefix;
49     private Map<String, Serializable> leaves = Collections.emptyMap();
50     private Collection<String> xpathsChildren;
51     private Collection<DataNode> childDataNodes = Collections.emptySet();
52 }