Minor updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@85641 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2013-11-18 16:50:17 +00:00
parent dbeb51af84
commit ec652ed49d
1 changed files with 16 additions and 1 deletions

View File

@ -22,6 +22,9 @@ public class CSVExportSession implements Serializable {
protected String id;
protected Destination destination;
protected String itemId;
protected String fileName;
public String getId() {
return id;
}
@ -34,10 +37,22 @@ public class CSVExportSession implements Serializable {
public void setDestination(Destination destination) {
this.destination = destination;
}
public String getItemId() {
return itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
@Override
public String toString() {
return "CSVExportSession [id=" + id + ", destination=" + destination
+ "]";
+ ", itemId=" + itemId + ", fileName=" + fileName + "]";
}