8e9dff873ad2d94dc71f807ad2f0f53d7f0937d9
[cps.git] / cps-service / src / main / java / org / onap / cps / spi / model / DataNode.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020-2021 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.util.Collection;
26 import java.util.Collections;
27 import java.util.Map;
28 import lombok.AccessLevel;
29 import lombok.Getter;
30 import lombok.Setter;
31
32 @Setter(AccessLevel.PROTECTED)
33 @Getter
34 public class DataNode {
35
36     DataNode() {    }
37
38     private String dataspace;
39     private String schemaSetName;
40     private String anchorName;
41     private ExtendedModuleReference extendedModuleReference;
42     private String xpath;
43     private Map<String, Object> leaves = Collections.emptyMap();
44     private Collection<String> xpathsChildren;
45     private Collection<DataNode> childDataNodes = Collections.emptySet();
46 }