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

top.jfunc.http.base.Protocol Maven / Gradle / Ivy

package top.jfunc.http.base;

/**
 * http相关协议
 * @author xiongshiyan
 */
public enum Protocol {
    /**
     * Http,默认端口80
     */
    HTTP{
        @Override
        public int getDefaultPort() {
            return 80;
        }
    } ,
    /**
     * Https,默认端口443
     */
    HTTPS{
        @Override
        public int getDefaultPort() {
            return 443;
        }
    };

    public abstract int getDefaultPort();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy