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

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

package net.snowflake.client.core;

class HostSpecSSD {
  private String hostname;
  private String hostSpecDirective;

  HostSpecSSD() {
    this.hostname = null;
    this.hostSpecDirective = null;
  }

  String getHostname() {
    return this.hostname;
  }

  String getHostSpecDirective() {
    return this.hostSpecDirective;
  }

  void setHostname(String hname) {
    this.hostname = hname;
  }

  void setHostSpecDirective(String ssd) {
    this.hostSpecDirective = ssd;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy