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

com.aliyuncs.CommonResponse Maven / Gradle / Ivy

There is a newer version: 1.8.10
Show newest version
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