1066eacf716a2c8f0e86128afb028502884640e8
[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-2022 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.JsonProperty;
25 import com.fasterxml.jackson.annotation.JsonValue;
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 final 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     @JsonProperty("cmHandleProperties")
60     private Map<String, String> dmiProperties;
61
62     /**
63      * Set DMI Properties by converting a list of PersistenceCmHandle.Property objects.
64      *
65      * @param dmiPropertiesAsList list of cm handle dmi properties
66      */
67     public void asDmiProperties(
68         final List<PersistenceCmHandle.Property> dmiPropertiesAsList) {
69         dmiProperties = new LinkedHashMap<>();
70         for (final PersistenceCmHandle.Property dmiProperty : dmiPropertiesAsList) {
71             dmiProperties.put(dmiProperty.getName(), dmiProperty.getValue());
72         }
73     }
74
75 }