d30702e77339251868a99b88c2062dffc1c0e245
[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  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
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  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.cps.nfproxy.api.impl;
21
22 import org.checkerframework.checker.nullness.qual.NonNull;
23 import org.onap.cps.api.CpsDataService;
24 import org.onap.cps.nfproxy.api.NfProxyDataService;
25 import org.onap.cps.spi.FetchDescendantsOption;
26 import org.onap.cps.spi.model.DataNode;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.stereotype.Service;
29
30 @Service
31 public class NfProxyDataServiceImpl implements NfProxyDataService {
32
33     private static final String NF_PROXY_DATASPACE_NAME = "NFP-Operational";
34
35     @Autowired
36     private CpsDataService cpsDataService;
37
38     @Override
39     public DataNode getDataNode(@NonNull final String cmHandle, @NonNull final String xpath,
40                                 @NonNull final FetchDescendantsOption fetchDescendantsOption) {
41         return cpsDataService.getDataNode(NF_PROXY_DATASPACE_NAME, cmHandle, xpath, fetchDescendantsOption);
42     }
43 }