org.logdoc.fairhttp.structs.traits.Schemas Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fair-http-client Show documentation
Show all versions of fair-http-client Show documentation
LogDoc.org project http client
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;
}
}