Adding unit tests and robuestness for DMI registration
[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     /**
57      * Validates plugin service names.
58      *
59      * @throws NcmpException if validation fails.
60      */
61     public void validateDmiPluginRegistration() throws NcmpException {
62         final String combinedServiceName = dmiPlugin;
63         final String dataServiceName = dmiDataPlugin;
64         final String modelsServiceName = dmiModelPlugin;
65
66         String errorMessage = null;
67
68         if (isNullEmptyOrBlank(combinedServiceName)) {
69             if ((isNullEmptyOrBlank(dataServiceName) && isNullEmptyOrBlank(modelsServiceName))) {
70                 errorMessage = "No DMI plugin service names";
71             } else {
72                 if (isNullEmptyOrBlank(dataServiceName) || isNullEmptyOrBlank(modelsServiceName)) {
73                     errorMessage = "Cannot register just a Data or Model plugin service name";
74                 }
75             }
76         } else {
77             if (!isNullEmptyOrBlank(dataServiceName) || !isNullEmptyOrBlank(modelsServiceName)) {
78                 errorMessage = "Cannot register combined plugin service name and other service names";
79             }
80         }
81
82         if (errorMessage != null) {
83             throw new NcmpException(errorMessage, "Please supply correct plugin information.");
84         }
85     }
86
87     private static boolean isNullEmptyOrBlank(final String serviceName) {
88         return Strings.isNullOrEmpty(serviceName) || serviceName.isBlank();
89     }
90
91 }