Blame view

src/th/co/ais/ssbsrfc/instance/RRRIns.java 803 Bytes
1048b156   Suraputt Suntimitr   Template
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
package th.co.ais.ssbsrfc.instance;

public class RRRIns {

	private String xml;
	private String result;
	private String diagnostic;
	private int retryMax = 0;
	private int retryCount = 0;
	
	public String getXml() {
		return xml;
	}
	public void setXml(String xml) {
		this.xml = xml;
	}
	public String getResult() {
		return result;
	}
	public void setResult(String result) {
		this.result = result;
	}
	public String getDiagnostic() {
		return diagnostic;
	}
	public void setDiagnostic(String diagnostic) {
		this.diagnostic = diagnostic;
	}
	public int getRetryMax() {
		return retryMax;
	}
	public void setRetryMax(int retryMax) {
		this.retryMax = retryMax;
	}
	public int getRetryCount() {
		return retryCount;
	}
	public void setRetryCount(int retryCount) {
		this.retryCount = retryCount;
	}
}