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

net.snowflake.client.core.HttpProtocol Maven / Gradle / Ivy

There is a newer version: 3.21.0
Show newest version
/*
 * 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