Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@93506 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-03-25 10:40:15 +00:00
parent 5b66693ee6
commit 0dfeb72996
1 changed files with 2 additions and 0 deletions

View File

@ -43,12 +43,14 @@ public class TRId implements Serializable {
public TRId(String id) {
this.id = id;
this.tabularResourceType=null;
this.tableId = null;
this.tableType = null;
}
public TRId(String id, String tableId) {
this.id = id;
this.tabularResourceType=null;
this.tableId = tableId;
this.tableType = null;
}