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

org.logdoc.fairhttp.structs.traits.Schemas Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.logdoc.fairhttp.structs.traits;

/**
 * @author Denis Danilin | [email protected]
 * 05.12.2022 13:14
 * fairhttp ☭ sweat and blood
 */
public enum Schemas {
    http(80), https(443), ws(80), wss(443);

    public final int port;

    Schemas(final int port) {
        this.port = port;
    }

    public int port() {
        return port;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy