Class TableNamespace
- java.lang.Object
-
- org.apache.accumulo.monitor.rest.tables.TableNamespace
-
public class TableNamespace extends Object
Generates a list of tables grouped by namespace- Since:
- 2.0.0
-
-
Field Summary
Fields Modifier and Type Field Description StringnamespaceList<TableInformation>table
-
Constructor Summary
Constructors Constructor Description TableNamespace(String name)Creates a new namespace group with an empty list
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddTable(TableInformation table)Add a new table to the list
-
-
-
Field Detail
-
namespace
public String namespace
-
table
public List<TableInformation> table
-
-
Constructor Detail
-
TableNamespace
public TableNamespace(String name)
Creates a new namespace group with an empty list- Parameters:
name- Namespace for the group
-
-
Method Detail
-
addTable
public void addTable(TableInformation table)
Add a new table to the list- Parameters:
table- Table to add
-
-