org.datoin.net.http.Requests Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-requests Show documentation
Show all versions of http-requests Show documentation
Simplified HTTP client by datoin team
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