Updated TRId

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@100952 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-24 09:35:31 +00:00
parent 6c44669117
commit d56d7044ee
1 changed files with 8 additions and 0 deletions

View File

@ -97,6 +97,14 @@ public class TabResource implements Serializable {
this.trId = trId;
}
public String getTabResourceType() {
String t = "";
if (trId != null && trId.getTabResourceType() != null) {
t = trId.getTabResourceType().toString();
}
return t;
}
public String getTableTypeName() {
String t = "";
if (trId != null && trId.getTableTypeName() != null) {