2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.vendorsoftwareproduct.types;
24 import org.apache.commons.collections4.MapUtils;
25 import org.openecomp.core.utilities.orchestration.OnboardingTypesEnum;
26 import org.openecomp.sdc.datatypes.error.ErrorLevel;
27 import org.openecomp.sdc.datatypes.error.ErrorMessage;
29 import java.util.ArrayList;
30 import java.util.HashMap;
31 import java.util.List;
35 * Created by TALIO on 4/27/2016.
37 public class UploadFileResponse {
38 private Map<String, List<ErrorMessage>> errors = new HashMap<>();
39 private UploadFileStatus status = UploadFileStatus.Success;
40 private OnboardingTypesEnum onboardingType;
41 private String networkPackageName;
43 public UploadFileStatus getStatus() {
47 public void setStatus(UploadFileStatus status) {
51 public OnboardingTypesEnum getOnboardingType() {
52 return onboardingType;
55 public void setOnboardingType(OnboardingTypesEnum onboardingTypesEnum) {
56 this.onboardingType = onboardingTypesEnum;
59 public String getNetworkPackageName() {
60 return networkPackageName;
63 public void setNetworkPackageName(String networkPackageName) {
64 this.networkPackageName = networkPackageName;
68 * Add structure error.
70 * @param fileName the file name
71 * @param errorMessage the error message
73 public void addStructureError(String fileName, ErrorMessage errorMessage) {
74 List<ErrorMessage> errorList = errors.get(fileName);
75 if (errorList == null) {
76 errorList = new ArrayList<>();
77 errors.put(fileName, errorList);
79 errorList.add(errorMessage);
80 if (ErrorLevel.ERROR.equals(errorMessage.getLevel())) {
81 status = UploadFileStatus.Failure;
86 * Add structure errors.
88 * @param errorsByFileName the errors by file name
90 public void addStructureErrors(Map<String, List<ErrorMessage>> errorsByFileName) {
91 if (errorsByFileName == null) {
95 errors.putAll(errorsByFileName);
97 if (status == UploadFileStatus.Failure) {
100 for (Map.Entry<String, List<ErrorMessage>> entry : errorsByFileName.entrySet()) {
101 for (ErrorMessage errorMessage : entry.getValue()) {
102 if (errorMessage.getLevel() == ErrorLevel.ERROR) {
103 status = UploadFileStatus.Failure;
110 public Map<String, List<ErrorMessage>> getErrors() {
114 public boolean hasErrors() {
115 return !MapUtils.isEmpty(errors);