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

com.aliyun.credentials.http.HttpResponse Maven / Gradle / Ivy

Go to download

Alibaba Cloud Credentials for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 https://www.aliyun.com

There is a newer version: 0.3.12
Show newest version
package com.aliyun.credentials.http;

public class HttpResponse extends HttpMessage {
    private int responseCode;
    private String responseMessage;

    public HttpResponse(String strUrl) {
        super(strUrl);
    }

    public int getResponseCode() {
        return responseCode;
    }

    public void setResponseCode(int responseCode) {
        this.responseCode = responseCode;
    }

    public String getResponseMessage() {
        return responseMessage;
    }

    public void setResponseMessage(String responseMessage) {
        this.responseMessage = responseMessage;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy