1 package org.kuali.ole.bo.explain;
2
3
4
5
6
7
8
9
10 public class OleSRUExplainServerInfo {
11
12 private String host;
13 private String port;
14 private String database;
15
16 private String protocol;
17 private String version;
18 private String transport;
19 private String method;
20 private String value;
21
22 public String getValue() {
23 return value;
24 }
25
26 public void setValue(String value) {
27 this.value = value;
28 }
29
30 public String getProtocol() {
31 return protocol;
32 }
33
34 public void setProtocol(String protocol) {
35 this.protocol = protocol;
36 }
37
38 public String getVersion() {
39 return version;
40 }
41
42 public void setVersion(String version) {
43 this.version = version;
44 }
45
46 public String getTransport() {
47 return transport;
48 }
49
50 public void setTransport(String transport) {
51 this.transport = transport;
52 }
53
54 public String getMethod() {
55 return method;
56 }
57
58 public void setMethod(String method) {
59 this.method = method;
60 }
61
62 public String getHost() {
63 return host;
64 }
65
66 public void setHost(String host) {
67 this.host = host;
68 }
69
70 public String getPort() {
71 return port;
72 }
73
74 public void setPort(String port) {
75 this.port = port;
76 }
77
78 public String getDatabase() {
79 return database;
80 }
81
82 public void setDatabase(String database) {
83 this.database = database;
84 }
85
86 @Override
87 public String toString() {
88 return "Explain ServerInfo{" +
89 "host='" + host + '\'' +
90 ", port='" + port + '\'' +
91 ", database='" + database + '\'' +
92 ", protocol='" + protocol + '\'' +
93 ", version='" + version + '\'' +
94 ", transport='" + transport + '\'' +
95 ", method='" + method + '\'' +
96 ", value='" + value + '\'' +
97 '}';
98 }
99 }