Skip to content

Commit

Permalink
Changes for SNAP-2603: Display list of Global Temporary Views/Tables …
Browse files Browse the repository at this point in the history
…with relevant details on Snappy UI.

 - Adding SnappyGlobalTemporaryViewStats class for global temporary views details object.
  • Loading branch information
snappy-sachin committed Jan 18, 2019
1 parent 7ee801f commit 9b56cb6
Showing 1 changed file with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
package com.pivotal.gemfirexd.internal.engine.ui;

import java.util.Map;

public class SnappyGlobalTemporaryViewStats {

private String tableName;
private String fullyQualifiedName;
private String tableType;
private String comment;
private Object schema;
private Map<String, String> properties;

public SnappyGlobalTemporaryViewStats(String name, String qname, String type, String comment,
Object schema, Map<String, String> properties) {
this.tableName = name;
this.fullyQualifiedName = qname;
this.tableType = type;
this.comment = comment;
this.schema = schema;
this.properties = properties;
}

public String getTableName() {
return tableName;
}

public String getFullyQualifiedName() {
return fullyQualifiedName;
}

public String getTableType() {
return tableType;
}

public String getComment() {
return comment;
}

public Object getSchema() {
return schema;
}

public Map<String, String> getProperties() {
return properties;
}

}

0 comments on commit 9b56cb6

Please sign in to comment.