summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponse.java
diff options
context:
space:
mode:
authorStone, Avi (as206k) <as206k@att.com>2018-04-12 15:12:44 +0300
committerStone, Avi (as206k) <as206k@att.com>2018-04-12 15:16:30 +0300
commit438bdef0d2473a4db83aac3d71d4596b223879d7 (patch)
treec6cd021d4b64d83c435ae07143ee4aa1ae0cfd6b /src/main/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponse.java
parenta5e73f1e0597834ba46754aaae4683f7acf06e47 (diff)
DCAE-D property initial commit
DCAE-D property initial commit Change-Id: I5ba79eddaa1732524e30652b679e4dd5dfed56b5 Issue-ID: SDC-1218 Signed-off-by: Stone, Avi (as206k) <as206k@att.com>
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;
+ }
+
+}