tabular-data-widget-common-.../src/main/java/org/gcube/portlets/user/td/widgetcommonevent/shared/dataview/DataView.java

46 lines
699 B
Java

package org.gcube.portlets.user.td.widgetcommonevent.shared.dataview;
import java.io.Serializable;
/**
*
* @author Giancarlo Panichi
*
*
*/
public class DataView implements Serializable {
private static final long serialVersionUID = 2683307379197083971L;
protected DataViewType dataViewType;
public DataView(){
}
public DataView(DataViewType dataViewType){
this.dataViewType=dataViewType;
}
public DataViewType getDataViewType() {
return dataViewType;
}
public void setDataViewType(DataViewType dataViewType) {
this.dataViewType = dataViewType;
}
@Override
public String toString() {
return "DataView [dataViewType=" + dataViewType + "]";
}
}