net.snowflake.client.core.QueryContextDTO Maven / Gradle / Ivy
package net.snowflake.client.core;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;
// The POJO object used by both JDBC and the Cloud service to exchange opaque informations.
@JsonInclude(JsonInclude.Include.NON_NULL)
public class QueryContextDTO {
// QueryContextDTO is a list of QueryContextEntryDTO. The first entry is the main entry with
// priority 0.
private List entries;
public QueryContextDTO() {
entries = null;
}
public QueryContextDTO(List entries) {
this.entries = entries;
}
public List getEntries() {
return entries;
}
public void setEntries(List entries) {
this.entries = entries;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy