net.snowflake.client.core.HttpProtocol Maven / Gradle / Ivy
/*
* Copyright (c) 2024 Snowflake Computing Inc. All rights reserved.
*/
package net.snowflake.client.core;
public enum HttpProtocol {
HTTP("http"),
HTTPS("https");
private final String scheme;
HttpProtocol(String scheme) {
this.scheme = scheme;
}
public String getScheme() {
return scheme;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy