org.datoin.net.http.methods.Head 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 : 7/5/14.
*/
public class Head extends Request {
public Head(String url) {
super(url);
}
@Override
public Response execute() {
return head();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy