aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/healthcheck-rest-types/src/main/java/org/openecomp/sdcrests/health/types/HealthInfoDtos.java
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/healthcheck-rest-types/src/main/java/org/openecomp/sdcrests/health/types/HealthInfoDtos.java')
-rw-r--r--openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/healthcheck-rest-types/src/main/java/org/openecomp/sdcrests/health/types/HealthInfoDtos.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/healthcheck-rest-types/src/main/java/org/openecomp/sdcrests/health/types/HealthInfoDtos.java b/openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/healthcheck-rest-types/src/main/java/org/openecomp/sdcrests/health/types/HealthInfoDtos.java
new file mode 100644
index 0000000000..e1385d6b80
--- /dev/null
+++ b/openecomp-be/api/openecomp-sdc-rest-webapp/healthcheck-rest/healthcheck-rest-types/src/main/java/org/openecomp/sdcrests/health/types/HealthInfoDtos.java
@@ -0,0 +1,31 @@
+package org.openecomp.sdcrests.health.types;
+
+
+import java.util.List;
+import java.util.stream.Collectors;
+
+public class HealthInfoDtos {
+ private List<HealthInfoDto> healthInfos;
+
+ public HealthInfoDtos() {
+ }
+
+ public HealthInfoDtos(List<HealthInfoDto> healthInfos) {
+ this.healthInfos = healthInfos;
+ }
+
+ public List<HealthInfoDto> getHealthInfos() {
+ return healthInfos;
+ }
+
+ public void setHealthInfos(List<HealthInfoDto> healthInfos) {
+ this.healthInfos = healthInfos;
+ }
+
+ @Override
+ public String toString() {
+ return healthInfos.stream().map(healthInfoDto -> healthInfoDto.toString())
+ .collect(Collectors.joining(", "));
+
+ }
+}