Add collaboration feature
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / notifications-rest / notifications-rest-types / src / main / java / org / openecomp / sdcrests / notifications / types / UpdateNotificationResponseStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdcrests.notifications.types;
22
23 import org.openecomp.sdc.datatypes.error.ErrorLevel;
24 import org.openecomp.sdc.datatypes.error.ErrorMessage;
25
26 import java.util.ArrayList;
27 import java.util.HashMap;
28 import java.util.List;
29 import java.util.Map;
30
31 import static org.openecomp.sdcrests.notifications.types.NotificationResponseStatus.Failure;
32 import static org.openecomp.sdcrests.notifications.types.NotificationResponseStatus.Success;
33
34 /**
35  * Created by TALIO on 4/27/2016.
36  */
37 public class UpdateNotificationResponseStatus {
38     private Map<String, List<ErrorMessage>> errors = new HashMap<>();
39     private NotificationResponseStatus status = Success;
40
41     public Map<String, List<ErrorMessage>> getErrors() {
42         return errors;
43     }
44
45     public void setErrors(Map<String, List<ErrorMessage>> errors) {
46         this.errors = errors;
47     }
48
49     public NotificationResponseStatus getStatus() {
50         return status;
51     }
52
53     public void setStatus(NotificationResponseStatus status) {
54         this.status = status;
55     }
56
57     public void addStructureError(String notificationId, ErrorMessage errorMessage) {
58         List<ErrorMessage> errorList =
59             errors.computeIfAbsent(notificationId, k -> new ArrayList<>());
60         errorList.add(errorMessage);
61         if (ErrorLevel.ERROR.equals(errorMessage.getLevel())) {
62             status = Failure;
63         }
64     }
65 }