All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyuncs.v5.CommonResponse Maven / Gradle / Ivy

package com.aliyuncs.v5;

import com.aliyuncs.v5.exceptions.ClientException;
import com.aliyuncs.v5.exceptions.ServerException;
import com.aliyuncs.v5.http.HttpResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;

public class CommonResponse extends AcsResponse {

    private String data;

    private int httpStatus;

    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 int getHttpStatus() {
        return httpStatus;
    }

    public void setHttpStatus(int httpStatus) {
        this.httpStatus = httpStatus;
    }

    public HttpResponse getHttpResponse() {
        return httpResponse;
    }

    public void setHttpResponse(HttpResponse httpResponse) {
        this.httpResponse = httpResponse;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy