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

com.databricks.jdbc.client.sqlexec.CreateSessionResponse Maven / Gradle / Ivy

There is a newer version: 2.6.40-patch-1
Show newest version
// TODO: Remove these classes when available in the sdk
package com.databricks.jdbc.client.sqlexec;

import com.fasterxml.jackson.annotation.JsonProperty;

/** create session response */
public class CreateSessionResponse {
  /** session id for the session created */
  @JsonProperty("session_id")
  private String sessionId;

  public CreateSessionResponse setSessionId(String sessionId) {
    this.sessionId = sessionId;
    return this;
  }

  public String getSessionId() {
    return sessionId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy