54 lines
1.1 KiB
Java
54 lines
1.1 KiB
Java
package com.tenwa.httpclient;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@XmlRootElement(name = "result")
|
|
@XmlAccessorType(value = XmlAccessType.FIELD)
|
|
public class WebServiceResult {
|
|
|
|
private String status;
|
|
|
|
private String returnValue;
|
|
|
|
private String errorCode;
|
|
|
|
private String errorMessage;
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getReturnValue() {
|
|
return returnValue;
|
|
}
|
|
|
|
public void setReturnValue(String returnValue) {
|
|
this.returnValue = returnValue;
|
|
}
|
|
|
|
public String getErrorCode() {
|
|
return errorCode;
|
|
}
|
|
|
|
public void setErrorCode(String errorCode) {
|
|
this.errorCode = errorCode;
|
|
}
|
|
|
|
public String getErrorMessage() {
|
|
return errorMessage;
|
|
}
|
|
|
|
public void setErrorMessage(String errorMessage) {
|
|
this.errorMessage = errorMessage;
|
|
}
|
|
}
|