Blame view

src/th/co/ais/ssbsrfc/utils/HttpStateData.java 343 Bytes
1048b156   Suraputt Suntimitr   Template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package th.co.ais.ssbsrfc.utils;

import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;

@Root(name="HttpStateData")
public class HttpStateData {
	@Element(name="state", required=false)
	private state state;

	public state getState() {
		return state;
	}

	public void setState(state state) {
		this.state = state;
	}
}