Merge "Update operation passthrough running - Service Layer"
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / operations / DmiRequestBody.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation
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  *
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.ncmp.api.impl.operations;
22
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonValue;
25 import java.util.Collections;
26 import java.util.LinkedHashMap;
27 import java.util.List;
28 import java.util.Map;
29 import lombok.Builder;
30 import lombok.Getter;
31 import org.onap.cps.ncmp.api.models.PersistenceCmHandle;
32
33 @JsonInclude(JsonInclude.Include.NON_NULL)
34 @Getter
35 @Builder
36 public class DmiRequestBody {
37     public enum OperationEnum {
38         READ("read"),
39         CREATE("create"),
40         UPDATE("update");
41         private String value;
42
43         OperationEnum(final String value) {
44             this.value = value;
45         }
46
47         @Override
48         @JsonValue
49         public String toString() {
50             return String.valueOf(value);
51         }
52     }
53
54     private OperationEnum operation;
55     private String dataType;
56     private String data;
57     private Map<String, String> cmHandleProperties;
58
59     /**
60      * Set CmHandleProperties by converting a list of PersistenceCmHandle.AdditionalProperty objects.
61      *
62      * @param cmHandlePropertiesAsList the cm handle additional properties
63      */
64     public void asCmHandleProperties(
65         final List<PersistenceCmHandle.AdditionalProperty> cmHandlePropertiesAsList) {
66         final boolean isCmHandlePropertiesNullOrEmpty =
67             cmHandlePropertiesAsList == null || cmHandlePropertiesAsList.isEmpty();
68         if (isCmHandlePropertiesNullOrEmpty) {
69             cmHandleProperties = Collections.emptyMap();
70         } else {
71             cmHandleProperties = new LinkedHashMap<>();
72             for (final PersistenceCmHandle.AdditionalProperty additionalProperty : cmHandlePropertiesAsList) {
73                 cmHandleProperties.put(additionalProperty.getName(),
74                     additionalProperty.getValue());
75             }
76         }
77     }
78
79 }