[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vendor-software-products-rest-types / src / main / java / org / openecomp / sdcrests / vendorsoftwareproducts / types / ValidationResponseDto.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.vendorsoftwareproducts.types;
22
23 import org.openecomp.sdcrests.common.types.ErrorCodeDto;
24 import org.openecomp.sdcrests.common.types.ErrorMessageDto;
25
26 import java.util.Collection;
27 import java.util.List;
28 import java.util.Map;
29
30 public class ValidationResponseDto {
31   private boolean valid;
32   private Collection<ErrorCodeDto> vspErrors;
33   private Collection<ErrorCodeDto> licensingDataErrors;
34   private Map<String, List<ErrorMessageDto>> uploadDataErrors;
35   private QuestionnaireValidationResultDto questionnaireValidationResult;
36   private ComponentValidationResultDto componentValidationResult;
37   private DeploymentFlavorValidationResultDto deploymentFlavorValidationResult;
38
39   public boolean isValid() {
40     return valid;
41   }
42
43   public void setValid(boolean valid) {
44     this.valid = valid;
45   }
46
47   public Collection<ErrorCodeDto> getVspErrors() {
48     return vspErrors;
49   }
50
51   public void setVspErrors(Collection<ErrorCodeDto> vspErrors) {
52     this.vspErrors = vspErrors;
53   }
54
55   public Collection<ErrorCodeDto> getLicensingDataErrors() {
56     return licensingDataErrors;
57   }
58
59   public void setLicensingDataErrors(Collection<ErrorCodeDto> licensingDataErrors) {
60     this.licensingDataErrors = licensingDataErrors;
61   }
62
63   public Map<String, List<ErrorMessageDto>> getUploadDataErrors() {
64     return uploadDataErrors;
65   }
66
67   public void setUploadDataErrors(Map<String, List<ErrorMessageDto>> uploadDataErrors) {
68     this.uploadDataErrors = uploadDataErrors;
69   }
70
71   public QuestionnaireValidationResultDto getQuestionnaireValidationResult() {
72     return questionnaireValidationResult;
73   }
74
75   public void setQuestionnaireValidationResult(
76       QuestionnaireValidationResultDto questionnaireValidationResult) {
77     this.questionnaireValidationResult = questionnaireValidationResult;
78   }
79
80   public ComponentValidationResultDto getComponentValidationResult() {
81     return componentValidationResult;
82   }
83
84   public void setComponentValidationResult(
85       ComponentValidationResultDto componentValidationResult) {
86     this.componentValidationResult = componentValidationResult;
87   }
88
89   public DeploymentFlavorValidationResultDto getDeploymentFlavorValidationResult() {
90     return deploymentFlavorValidationResult;
91   }
92
93   public void setDeploymentFlavorValidationResult(
94       DeploymentFlavorValidationResultDto deploymentFlavorValidationResult) {
95     this.deploymentFlavorValidationResult = deploymentFlavorValidationResult;
96   }
97
98 }