1 package de.dlr.shepard.integrationtests;
2
3 import lombok.EqualsAndHashCode;
4 import lombok.Getter;
5 import org.eclipse.microprofile.health.HealthCheckResponse;
6 import org.eclipse.microprofile.health.HealthCheckResponse.Status;
7
8 @Getter
9 @EqualsAndHashCode
10 public class ServiceHealthCheckIO {
11
12 public ServiceHealthCheckIO(String name, Status status) {
13 this.name = name;
14 this.status = status;
15 }
16
17 private String name;
18 private HealthCheckResponse.Status status;
19 }