8a2590ddc4997d8ec033469226c439590c2f3116
[so/adapters/so-cnf-adapter.git] /
1 package org.onap.so.adapters.cnf.model.healthcheck;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 public class K8sRbInstanceHealthCheckSimple {
6
7     @JsonProperty("healthcheck-id")
8     private String id;
9
10     @JsonProperty("status")
11     private String status;
12
13     public String getId() {
14         return id;
15     }
16
17     public void setId(String id) {
18         this.id = id;
19     }
20
21     public String getStatus() {
22         return status;
23     }
24
25     public void setStatus(String status) {
26         this.status = status;
27     }
28
29     @Override
30     public String toString() {
31         return "K8sRbInstanceHealthCheckSimple{" +
32                 "id='" + id + '\'' +
33                 ", status='" + status + '\'' +
34                 '}';
35     }
36
37 }