CPS-240 - Create REST End-point on NF-Proxy for DataNode Update & cpsPath Query
[cps.git] / cps-nf-proxy-service / src / main / java / org / onap / cps / nfproxy / api / impl / NfProxyDataServiceImpl.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 highstreet technologies GmbH
4  *  Copyright (C) 2021 Nordix Foundation
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.nfproxy.api.impl;
22
23 import java.util.Collection;
24 import org.onap.cps.api.CpsDataService;
25 import org.onap.cps.api.CpsQueryService;
26 import org.onap.cps.nfproxy.api.NfProxyDataService;
27 import org.onap.cps.spi.FetchDescendantsOption;
28 import org.onap.cps.spi.model.DataNode;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.stereotype.Service;
31
32 @Service
33 public class NfProxyDataServiceImpl implements NfProxyDataService {
34
35     private static final String NF_PROXY_DATASPACE_NAME = "NFP-Operational";
36
37     @Autowired
38     private CpsDataService cpsDataService;
39
40     @Autowired
41     private CpsQueryService cpsQueryService;
42
43     @Override
44     public DataNode getDataNode(final String cmHandle, final String xpath,
45         final FetchDescendantsOption fetchDescendantsOption) {
46         return cpsDataService.getDataNode(NF_PROXY_DATASPACE_NAME, cmHandle, xpath, fetchDescendantsOption);
47     }
48
49     @Override
50     public Collection<DataNode> queryDataNodes(final String cmHandle, final String cpsPath) {
51         return cpsQueryService.queryDataNodes(NF_PROXY_DATASPACE_NAME, cmHandle, cpsPath);
52     }
53
54     @Override
55     public void updateNodeLeaves(final String cmHandle, final String parentNodeXpath, final String jsonData) {
56         cpsDataService.updateNodeLeaves(NF_PROXY_DATASPACE_NAME, cmHandle, parentNodeXpath, jsonData);
57     }
58
59     @Override
60     public void replaceNodeTree(final String cmHandle, final String parentNodeXpath, final String jsonData) {
61         cpsDataService.replaceNodeTree(NF_PROXY_DATASPACE_NAME, cmHandle, parentNodeXpath, jsonData);
62     }
63 }