-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetterSetter.java
102 lines (77 loc) · 2.12 KB
/
GetterSetter.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.practice;
public class GetterSetter {
//encapsulation example
String s;
private String ephesoftUserName;
private String ephesoftPassword;
private String hostName;
private int hostPort;
private String httpProtocol;
private String batchClassIdentifier;
private String classifyMultiPageHOCRServiceURI;
private String hocrXmlZipPath;
private String classificationOutputPath;
public String getS() {
return s;
}
public void setS(String s) {
this.s = s;
}
public String getEphesoftUserName() {
return ephesoftUserName;
}
public void setEphesoftUserName(String ephesoftUserName) {
this.ephesoftUserName = ephesoftUserName;
}
public String getEphesoftPassword() {
return ephesoftPassword;
}
public void setEphesoftPassword(String ephesoftPassword) {
this.ephesoftPassword = ephesoftPassword;
}
public String getHostName() {
return hostName;
}
public void setHostName(String hostName) {
this.hostName = hostName;
}
public int getHostPort() {
return hostPort;
}
public void setHostPort(int hostPort) {
this.hostPort = hostPort;
}
public String getHttpProtocol() {
return httpProtocol;
}
public void setHttpProtocol(String httpProtocol) {
this.httpProtocol = httpProtocol;
}
public String getBatchClassIdentifier() {
return batchClassIdentifier;
}
public void setBatchClassIdentifier(String batchClassIdentifier) {
this.batchClassIdentifier = batchClassIdentifier;
}
public String getClassifyMultiPageHOCRServiceURI() {
return classifyMultiPageHOCRServiceURI;
}
public void setClassifyMultiPageHOCRServiceURI(
String classifyMultiPageHOCRServiceURI) {
this.classifyMultiPageHOCRServiceURI = classifyMultiPageHOCRServiceURI;
}
public String getHocrXmlZipPath() {
return hocrXmlZipPath;
}
public void setHocrXmlZipPath(String hocrXmlZipPath) {
this.hocrXmlZipPath = hocrXmlZipPath;
}
public String getClassificationOutputPath() {
return classificationOutputPath;
}
public void setClassificationOutputPath(String classificationOutputPath) {
this.classificationOutputPath = classificationOutputPath;
}
public static void main(String[] args) {
}
}