
com.aliyuncs.CommonResponse Maven / Gradle / Ivy
package com.aliyuncs;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.exceptions.ServerException;
import com.aliyuncs.http.HttpResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CommonResponse extends AcsResponse {
private String data;
private HttpResponse httpResponse;
@Override
public AcsResponse getInstance(UnmarshallerContext context) throws ClientException, ServerException {
return null;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public HttpResponse getHttpResponse() {
return httpResponse;
}
public void setHttpResponse(HttpResponse httpResponse) {
this.httpResponse = httpResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy