summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponse.java')
-rw-r--r--src/main/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponse.java65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/main/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponse.java b/src/main/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponse.java
new file mode 100644
index 0000000..56d6cf0
--- /dev/null
+++ b/src/main/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponse.java
@@ -0,0 +1,65 @@
+package org.onap.sdc.dcae.composition.restmodels.health;
+
+import java.util.List;
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+
+public class HealthResponse {
+
+ @SerializedName("healthCheckComponent")
+ @Expose
+ private String healthCheckComponent;
+ @SerializedName("healthCheckStatus")
+ @Expose
+ private String healthCheckStatus;
+ @SerializedName("sdcVersion")
+ @Expose
+ private String sdcVersion;
+ @SerializedName("description")
+ @Expose
+ private String description;
+ @SerializedName("componentsInfo")
+ @Expose
+ private List<ComponentsInfo> componentsInfo = null;
+
+ public String getHealthCheckComponent() {
+ return healthCheckComponent;
+ }
+
+ public void setHealthCheckComponent(String healthCheckComponent) {
+ this.healthCheckComponent = healthCheckComponent;
+ }
+
+ public String getHealthCheckStatus() {
+ return healthCheckStatus;
+ }
+
+ public void setHealthCheckStatus(String healthCheckStatus) {
+ this.healthCheckStatus = healthCheckStatus;
+ }
+
+ public String getSdcVersion() {
+ return sdcVersion;
+ }
+
+ public void setSdcVersion(String sdcVersion) {
+ this.sdcVersion = sdcVersion;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public void setDescription(String description) {
+ this.description = description;
+ }
+
+ public List<ComponentsInfo> getComponentsInfo() {
+ return componentsInfo;
+ }
+
+ public void setComponentsInfo(List<ComponentsInfo> componentsInfo) {
+ this.componentsInfo = componentsInfo;
+ }
+
+}