fixed log4j issue
[eliot.git] / blueprints / common / eliot-ui / be / src / eliotk8sclient / src / main / java / com / eliot / eliotbe / eliotk8sclient / model / Node.java
1 package com.eliot.eliotbe.eliotk8sclient.model;
2
3 public class Node
4 {
5     private String nodeName;
6     private String nodeStatus;
7     private String nodeRole;
8     private String age;
9     private String version;
10     private String internalIp;
11     private String externalIp;
12     private String osImage;
13     private String kernel;
14     private String containerRuntime;
15
16     public String getNodeName() {
17         return nodeName;
18     }
19
20     public void setNodeName(String nodeName) {
21         this.nodeName = nodeName;
22     }
23
24     public String getNodeStatus() {
25         return nodeStatus;
26     }
27
28     public void setNodeStatus(String nodeStatus) {
29         this.nodeStatus = nodeStatus;
30     }
31
32     public String getNodeRole() {
33         return nodeRole;
34     }
35
36     public void setNodeRole(String nodeRole) {
37         this.nodeRole = nodeRole;
38     }
39
40     public String getAge() {
41         return age;
42     }
43
44     public void setAge(String age) {
45         this.age = age;
46     }
47
48     public String getVersion() {
49         return version;
50     }
51
52     public void setVersion(String version) {
53         this.version = version;
54     }
55
56     public String getInternalIp() {
57         return internalIp;
58     }
59
60     public void setInternalIp(String internalIp) {
61         this.internalIp = internalIp;
62     }
63
64     public String getExternalIp() {
65         return externalIp;
66     }
67
68     public void setExternalIp(String externalIp) {
69         this.externalIp = externalIp;
70     }
71
72     public String getOsImage() {
73         return osImage;
74     }
75
76     public void setOsImage(String osImage) {
77         this.osImage = osImage;
78     }
79
80     public String getKernel() {
81         return kernel;
82     }
83
84     public void setKernel(String kernel) {
85         this.kernel = kernel;
86     }
87
88     public String getContainerRuntime() {
89         return containerRuntime;
90     }
91
92     public void setContainerRuntime(String containerRuntime) {
93         this.containerRuntime = containerRuntime;
94     }
95
96 }
97