forked from vmware-archive/gemfirexd-oss
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes for SNAP-2603: Display list of Global Temporary Views/Tables …
…with relevant details on Snappy UI. - Adding SnappyGlobalTemporaryViewStats class for global temporary views details object.
- Loading branch information
1 parent
7ee801f
commit 9b56cb6
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
...rc/main/java/com/pivotal/gemfirexd/internal/engine/ui/SnappyGlobalTemporaryViewStats.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
} |