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

com.aliyun.datahub.common.transport.Response Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.aliyun.datahub.common.transport;

import java.util.HashMap;
import java.util.Map;

/**
 * Response表示HTTP请求的响应
 */
public abstract class Response {

    protected int status = 500;
    protected Map headers = new HashMap();
    protected byte[] body;

    /**
     * 检查HTTP请求是否成功
     * 
     * 
     * HTTP返回值2xx为成功状态
     * 
     *
     * @return HTTP返回值2xx: true, 其他: false
     */
    public boolean isOK() {
        return status / 100 == 2;
    }

    /**
     * 获得响应的状态码
     * 
     * 状态值参见 HttpURLConnection}
     *
     * @return
     */
    public int getStatus() {
        return status;
    }

    /**
     * 获得响应的HTTP头
     *
     * @return HTTP头
     */
    public Map getHeaders() {
        return headers;
    }

    /**
     * 获得响应的HTTP头
     *
     * @param name
     * @return
     */
    public String getHeader(String name) {
        return headers.get(name);
    }

    public void setHeader(String key, String value) {
        headers.put(key, value);
    }

    /**
     * 获得响应的body部分
     *
     * @return  Connection.getResponse()}得到的对象返回null, 需要通过
     * Connection.getInputStream()}读取body数据
     */
    public byte[] getBody() {
        return body;
    }

    public void setBody(byte[] body) {
        this.body = body;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy