Minor updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@84875 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2013-11-04 14:49:28 +00:00
parent 5deae35cbb
commit a361006cf2
1 changed files with 23 additions and 39 deletions

View File

@ -4,8 +4,8 @@ import java.io.Serializable;
/**
*
* @author "Giancarlo Panichi"
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
* @author "Giancarlo Panichi" <a
* href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class TRId implements Serializable {
@ -22,11 +22,6 @@ public class TRId implements Serializable{
*/
String id;
/**
* Item on Workspace
*/
String itemId;
public TRId() {
}
@ -36,41 +31,30 @@ public class TRId implements Serializable{
this.tableId = null;
}
public TRId(String id, String tableId) {
this.id = id;
this.tableId = tableId;
this.itemId=null;
}
public String getTableId() {
return tableId;
}
public void setTableId(String tableId) {
this.tableId = tableId;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getItemId() {
return itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
@Override
public String toString() {
return "TRId [tableId=" + tableId + ", id=" + id + ", itemId=" + itemId
+ "]";
return "TRId [tableId=" + tableId + ", id=" + id + "]";
}
}