Added Change Table Type

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@92297 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-02-25 17:58:40 +00:00
parent d8918ab8a7
commit 28ff394617
1 changed files with 10 additions and 0 deletions

View File

@ -12,6 +12,16 @@ public class ChangeTableTypeSession implements Serializable {
protected TRId trId;
protected TableType tableType;
public ChangeTableTypeSession(){
}
public ChangeTableTypeSession(TRId trId, TableType tableType){
this.trId=trId;
this.tableType=tableType;
}
public TRId getTrId() {
return trId;
}