Added csv export session
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@85613 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
4e01ff9458
commit
a9ade175bf
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package org.gcube.portlets.user.td.gwtservice.shared.csv;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.source.Source;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
*/
|
||||
public class CSVExportSession implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 407790340509190329L;
|
||||
|
||||
protected String id;
|
||||
protected Source source;
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
public Source getSource() {
|
||||
return source;
|
||||
}
|
||||
public void setSource(Source source) {
|
||||
this.source = source;
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "CSVExportSession [id=" + id + ", source=" + source + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue