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

org.datoin.net.http.methods.Get Maven / Gradle / Ivy

The newest version!
package org.datoin.net.http.methods;

import org.datoin.net.http.Request;
import org.datoin.net.http.Response;

/**
 * Author : [email protected]
 * Created on : 6/5/14.
 */
public class Get extends Request {

    public Get(String url) {
        super(url);
    }

    @Override
    public Response execute() {
        return get();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy