Patch operation passthrough running
[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         PATCH("patch");
42         private String value;
43
44         OperationEnum(final String value) {
45             this.value = value;
46         }
47
48         @Override
49         @JsonValue
50         public String toString() {
51             return String.valueOf(value);
52         }
53     }
54
55     private OperationEnum operation;
56     private String dataType;
57     private String data;
58     private Map<String, String> cmHandleProperties;
59
60     /**
61      * Set CmHandleProperties by converting a list of PersistenceCmHandle.AdditionalProperty objects.
62      *
63      * @param cmHandlePropertiesAsList the cm handle additional properties
64      */
65     public void asCmHandleProperties(
66         final List<PersistenceCmHandle.AdditionalProperty> cmHandlePropertiesAsList) {
67         final boolean isCmHandlePropertiesNullOrEmpty =
68             cmHandlePropertiesAsList == null || cmHandlePropertiesAsList.isEmpty();
69         if (isCmHandlePropertiesNullOrEmpty) {
70             cmHandleProperties = Collections.emptyMap();
71         } else {
72             cmHandleProperties = new LinkedHashMap<>();
73             for (final PersistenceCmHandle.AdditionalProperty additionalProperty : cmHandlePropertiesAsList) {
74                 cmHandleProperties.put(additionalProperty.getName(),
75                     additionalProperty.getValue());
76             }
77         }
78     }
79
80 }