d76ae665ae3a2b2828f55d5694e018b91f444598
[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
37   public boolean isValid() {
38     return valid;
39   }
40
41   public void setValid(boolean valid) {
42     this.valid = valid;
43   }
44
45   public Collection<ErrorCodeDto> getVspErrors() {
46     return vspErrors;
47   }
48
49   public void setVspErrors(Collection<ErrorCodeDto> vspErrors) {
50     this.vspErrors = vspErrors;
51   }
52
53   public Collection<ErrorCodeDto> getLicensingDataErrors() {
54     return licensingDataErrors;
55   }
56
57   public void setLicensingDataErrors(Collection<ErrorCodeDto> licensingDataErrors) {
58     this.licensingDataErrors = licensingDataErrors;
59   }
60
61   public Map<String, List<ErrorMessageDto>> getUploadDataErrors() {
62     return uploadDataErrors;
63   }
64
65   public void setUploadDataErrors(Map<String, List<ErrorMessageDto>> uploadDataErrors) {
66     this.uploadDataErrors = uploadDataErrors;
67   }
68
69   public QuestionnaireValidationResultDto getQuestionnaireValidationResult() {
70     return questionnaireValidationResult;
71   }
72
73   public void setQuestionnaireValidationResult(
74       QuestionnaireValidationResultDto questionnaireValidationResult) {
75     this.questionnaireValidationResult = questionnaireValidationResult;
76   }
77 }