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

com.moon.core.net.HttpUtil Maven / Gradle / Ivy

package com.moon.core.net;

import com.moon.core.lang.ThrowUtil;

/**
 * @author moonsky
 */
public final class HttpUtil {

    /**
     * default http request timeout
     */
    final static int TIMEOUT = 60000;

    private HttpUtil() { ThrowUtil.noInstanceError(); }

    public static HttpConnector connector(String url) {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy