HttpStateData.java
343 Bytes
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;
}
}