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

org.datoin.net.http.Requests Maven / Gradle / Ivy

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

import org.datoin.net.http.methods.*;

/**
 * Author : [email protected]
 * Created on : 6/5/14.
 */
public class Requests {
//    public Response execute
    public static Get get(String url){
        return new Get(url);
    }

    public static Post post(String url){
        return new Post(url);
    }

    public static Put put(String url) { return new Put(url);}

    public static Head head(String url) { return new Head(url);}

    public static Delete delete(String url) { return new Delete(url);}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy