From f845ac23cdd262b7624785283531952e38557deb Mon Sep 17 00:00:00 2001 From: vasraz Date: Wed, 14 Jun 2023 20:56:59 +0100 Subject: Improve test coverage Signed-off-by: Vasyl Razinkov Change-Id: Ib5c265567973369a9061ce611ab018857016bff1 Issue-ID: SDC-4536 --- .../openecomp/sdc/common/api/HealthCheckInfo.java | 74 ++++------------------ 1 file changed, 12 insertions(+), 62 deletions(-) (limited to 'common-app-api/src/main/java/org/openecomp') diff --git a/common-app-api/src/main/java/org/openecomp/sdc/common/api/HealthCheckInfo.java b/common-app-api/src/main/java/org/openecomp/sdc/common/api/HealthCheckInfo.java index 361701a9d7..009e532174 100644 --- a/common-app-api/src/main/java/org/openecomp/sdc/common/api/HealthCheckInfo.java +++ b/common-app-api/src/main/java/org/openecomp/sdc/common/api/HealthCheckInfo.java @@ -20,7 +20,17 @@ package org.openecomp.sdc.common.api; import java.util.List; - +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import lombok.ToString; + +@AllArgsConstructor +@NoArgsConstructor +@Getter +@Setter +@ToString public class HealthCheckInfo { private String healthCheckComponent; @@ -37,65 +47,5 @@ public class HealthCheckInfo { this.description = description; } - public HealthCheckInfo(String healthCheckComponent, HealthCheckStatus healthCheckStatus, String version, String description, - List componentsInfo) { - super(); - this.healthCheckComponent = healthCheckComponent; - this.healthCheckStatus = healthCheckStatus; - this.version = version; - this.description = description; - this.componentsInfo = componentsInfo; - } - - public HealthCheckInfo() { - super(); - } - - public String getHealthCheckComponent() { - return healthCheckComponent; - } - - public void setHealthCheckComponent(String healthCheckComponent) { - this.healthCheckComponent = healthCheckComponent; - } - - public HealthCheckStatus getHealthCheckStatus() { - return healthCheckStatus; - } - - public void setHealthCheckStatus(HealthCheckStatus healthCheckStatus) { - this.healthCheckStatus = healthCheckStatus; - } - - public List getComponentsInfo() { - return componentsInfo; - } - - public void setComponentsInfo(List componentsInfo) { - this.componentsInfo = componentsInfo; - } - - public String getVersion() { - return version; - } - - public void setVersion(String version) { - this.version = version; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - @Override - public String toString() { - return "HealthCheckInfo [healthCheckComponent=" + healthCheckComponent + ", healthCheckStatus=" + healthCheckStatus + ", version=" + version - + ", description=" + description + ", componentsInfo=" + componentsInfo + "]"; - } - - public enum HealthCheckStatus {UP, DOWN, UNKNOWN;} + public enum HealthCheckStatus {UP, DOWN, UNKNOWN} } -- cgit 1.2.3-korg