[cps] Fix getResourceDataForPassthroughOperational endpoint
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / operations / DmiOperations.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-2022 Nordix Foundation
4  *  Modifications Copyright (C) 2022 Bell Canada
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  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.ncmp.api.impl.operations;
23
24 import lombok.Getter;
25 import lombok.RequiredArgsConstructor;
26 import org.onap.cps.ncmp.api.impl.client.DmiRestClient;
27 import org.onap.cps.ncmp.api.impl.config.NcmpConfiguration;
28 import org.onap.cps.ncmp.api.impl.utils.DmiServiceUrlBuilder;
29 import org.onap.cps.utils.JsonObjectMapper;
30 import org.springframework.stereotype.Service;
31
32 @RequiredArgsConstructor
33 @Service
34 public class DmiOperations {
35
36     @Getter
37     public enum DataStoreEnum {
38         PASSTHROUGH_OPERATIONAL("ncmp-datastore:passthrough-operational"),
39         PASSTHROUGH_RUNNING("ncmp-datastore:passthrough-running");
40         private final String value;
41
42         DataStoreEnum(final String value) {
43             this.value = value;
44         }
45     }
46
47     protected final YangModelCmHandleRetriever yangModelCmHandleRetriever;
48     protected final JsonObjectMapper jsonObjectMapper;
49     protected final NcmpConfiguration.DmiProperties dmiProperties;
50     protected final DmiRestClient dmiRestClient;
51     protected final DmiServiceUrlBuilder dmiServiceUrlBuilder;
52
53     String getDmiResourceUrl(final String dmiServiceName, final String cmHandle, final String resourceName) {
54         return dmiServiceUrlBuilder.getCmHandleUrl()
55                 .pathSegment("{resourceName}")
56                 .buildAndExpand(dmiServiceName, dmiProperties.getDmiBasePath(), cmHandle, resourceName).toUriString();
57     }
58
59
60 }