Allow separate registration of DMIDataPlugin and DmiModelPugin
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / models / DmiPluginRegistration.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.models;
22
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonInclude.Include;
25 import com.fasterxml.jackson.annotation.JsonSetter;
26 import com.fasterxml.jackson.annotation.Nulls;
27 import com.google.common.base.Strings;
28 import java.util.List;
29 import lombok.Getter;
30 import lombok.Setter;
31 import org.onap.cps.ncmp.api.impl.exception.NcmpException;
32
33 /**
34  * Dmi Registry request object.
35  */
36 @Getter
37 @Setter
38 @JsonInclude(Include.NON_NULL)
39 public class DmiPluginRegistration {
40
41     @JsonSetter(nulls = Nulls.AS_EMPTY)
42     private String dmiPlugin;
43
44     @JsonSetter(nulls = Nulls.AS_EMPTY)
45     private String dmiDataPlugin;
46
47     @JsonSetter(nulls = Nulls.AS_EMPTY)
48     private String dmiModelPlugin;
49
50     private List<CmHandle> createdCmHandles;
51
52     private List<CmHandle> updatedCmHandles;
53
54     private List<String> removedCmHandles;
55
56     public static final String PLEASE_SUPPLY_CORRECT_PLUGIN_INFORMATION = "Please supply correct plugin information.";
57
58     /**
59      * Validates plugin service names.
60      *
61      * @throws NcmpException if validation fails.
62      */
63     public void validateDmiPluginRegistration() throws NcmpException {
64         final String combinedServiceName = dmiPlugin;
65         final String dataServiceName = dmiDataPlugin;
66         final String modelsServiceName = dmiModelPlugin;
67
68         String errorMessage = null;
69
70         if (isNullEmptyOrBlank(combinedServiceName)
71             && isNullEmptyOrBlank(dataServiceName)
72             && isNullEmptyOrBlank(modelsServiceName)) {
73             errorMessage = "No DMI plugin service names";
74         }
75
76         if (!isNullEmptyOrBlank(combinedServiceName)
77             && (!isNullEmptyOrBlank(dataServiceName) || !isNullEmptyOrBlank(modelsServiceName))) {
78             errorMessage = "Invalid combination of plugin service names";
79         }
80
81         if (errorMessage != null) {
82             throw new NcmpException(errorMessage, PLEASE_SUPPLY_CORRECT_PLUGIN_INFORMATION);
83         }
84     }
85
86     private static boolean isNullEmptyOrBlank(final String serviceName) {
87         return Strings.isNullOrEmpty(serviceName) || serviceName.isBlank();
88     }
89
90 }