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

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