apzl_leasing/src_tenwa/com/tenwa/httpclient/WebServiceResult.java
2019-05-31 17:59:20 +08:00

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;
}
}