org.cloudgraph.hbase.client.HBaseAdmin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudgraph-hbase Show documentation
Show all versions of cloudgraph-hbase Show documentation
CloudGraph(tm) is a suite of Service Data Object (SDO) 2.1 services designed for relational and big-table style "cloud" databases, such as HBase and others.
The newest version!
package org.cloudgraph.hbase.client;
import org.cloudgraph.core.client.Admin;
public class HBaseAdmin implements Admin {
private org.apache.hadoop.hbase.client.Admin admin;
@SuppressWarnings("unused")
private HBaseAdmin() {
}
public HBaseAdmin(org.apache.hadoop.hbase.client.Admin admin) {
super();
this.admin = admin;
}
public org.apache.hadoop.hbase.client.Admin getAdmin() {
return admin;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy