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