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

cc.kebei.expands.request.http.simple.SimpleHttpRequest Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
package cc.kebei.expands.request.http.simple;

import org.apache.http.HttpResponse;
import cc.kebei.expands.request.http.Response;

import java.io.IOException;

/**
 * Created by Kebei on 16-6-28.
 */
public class SimpleHttpRequest extends AbstractHttpRequest {
    public SimpleHttpRequest(String url) {
        super(url);
    }

    @Override
    protected Response getResultValue(HttpResponse res) throws IOException {
        return new SimpleResponse(res);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy