com.aerospike.jdbc.model.AerospikeClusterInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aerospike-jdbc Show documentation
Show all versions of aerospike-jdbc Show documentation
A JDBC driver for the Aerospike database
The newest version!
package com.aerospike.jdbc.model;
import java.util.Collection;
import java.util.Map;
public class AerospikeClusterInfo {
private final String build;
private final String edition;
private final Collection catalogs;
private final Map> tables;
public AerospikeClusterInfo(String build, String edition, Collection catalogs,
Map> tables) {
this.build = build;
this.edition = edition;
this.catalogs = catalogs;
this.tables = tables;
}
public String getBuild() {
return build;
}
public String getEdition() {
return edition;
}
public Collection getCatalogs() {
return catalogs;
}
public Map> getTables() {
return tables;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy