summaryrefslogtreecommitdiffstats
path: root/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
diff options
context:
space:
mode:
Diffstat (limited to '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')
-rw-r--r--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.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/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 b/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
index d76ae665ae..bc03ec9f49 100644
--- a/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
+++ b/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
@@ -33,6 +33,8 @@ public class ValidationResponseDto {
private Collection<ErrorCodeDto> licensingDataErrors;
private Map<String, List<ErrorMessageDto>> uploadDataErrors;
private QuestionnaireValidationResultDto questionnaireValidationResult;
+ private ComponentValidationResultDto componentValidationResult;
+ private DeploymentFlavorValidationResultDto deploymentFlavorValidationResult;
public boolean isValid() {
return valid;
@@ -74,4 +76,23 @@ public class ValidationResponseDto {
QuestionnaireValidationResultDto questionnaireValidationResult) {
this.questionnaireValidationResult = questionnaireValidationResult;
}
+
+ public ComponentValidationResultDto getComponentValidationResult() {
+ return componentValidationResult;
+ }
+
+ public void setComponentValidationResult(
+ ComponentValidationResultDto componentValidationResult) {
+ this.componentValidationResult = componentValidationResult;
+ }
+
+ public DeploymentFlavorValidationResultDto getDeploymentFlavorValidationResult() {
+ return deploymentFlavorValidationResult;
+ }
+
+ public void setDeploymentFlavorValidationResult(
+ DeploymentFlavorValidationResultDto deploymentFlavorValidationResult) {
+ this.deploymentFlavorValidationResult = deploymentFlavorValidationResult;
+ }
+
}