Module Sync Lock State implementation
[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.ncmp.api.inventory.InventoryPersistence;
30 import org.onap.cps.utils.JsonObjectMapper;
31 import org.springframework.stereotype.Service;
32
33 @RequiredArgsConstructor
34 @Service
35 public class DmiOperations {
36
37     @Getter
38     public enum DataStoreEnum {
39         PASSTHROUGH_OPERATIONAL("ncmp-datastore:passthrough-operational"),
40         PASSTHROUGH_RUNNING("ncmp-datastore:passthrough-running");
41         private final String value;
42
43         DataStoreEnum(final String value) {
44             this.value = value;
45         }
46     }
47
48     protected final InventoryPersistence inventoryPersistence;
49     protected final JsonObjectMapper jsonObjectMapper;
50     protected final NcmpConfiguration.DmiProperties dmiProperties;
51     protected final DmiRestClient dmiRestClient;
52     protected final DmiServiceUrlBuilder dmiServiceUrlBuilder;
53
54     String getDmiResourceUrl(final String dmiServiceName, final String cmHandle, final String resourceName) {
55         return dmiServiceUrlBuilder.getCmHandleUrl()
56                 .pathSegment("{resourceName}")
57                 .buildAndExpand(dmiServiceName, dmiProperties.getDmiBasePath(), cmHandle, resourceName).toUriString();
58     }
59
60
61 }