org.datoin.net.http.methods.Get 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.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