Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@99232 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
d2f778559e
commit
1142dbe5cc
|
@ -1,100 +0,0 @@
|
||||||
package org.gcube.portlets.user.td.gwtservice.shared.sdmx;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
import org.gcube.portlets.user.td.gwtservice.shared.task.State;
|
|
||||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.table.metadata.TabExportMetadata;
|
|
||||||
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @author "Giancarlo Panichi"
|
|
||||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class SDMXExportMonitor implements Serializable {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = -5998841163159590481L;
|
|
||||||
|
|
||||||
protected float progress;
|
|
||||||
protected State status;
|
|
||||||
protected String statusDescription;
|
|
||||||
protected Throwable error;
|
|
||||||
protected String url;
|
|
||||||
protected TabExportMetadata tabExportMetadata;
|
|
||||||
protected TRId trId;
|
|
||||||
|
|
||||||
public TRId getTrId() {
|
|
||||||
return trId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTrId(TRId trId) {
|
|
||||||
this.trId = trId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public float getProgress(){
|
|
||||||
return progress;
|
|
||||||
};
|
|
||||||
|
|
||||||
public State getStatus(){
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getStatusDescription(){
|
|
||||||
return statusDescription;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProgress(float progress) {
|
|
||||||
this.progress = progress;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(State status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(int status) {
|
|
||||||
this.status = State.values()[status];
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatusDescription(String statusDescription) {
|
|
||||||
this.statusDescription = statusDescription;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Throwable getError() {
|
|
||||||
return error;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setError(Throwable error) {
|
|
||||||
this.error = error;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUrl() {
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUrl(String url) {
|
|
||||||
this.url = url;
|
|
||||||
}
|
|
||||||
|
|
||||||
public TabExportMetadata getTabExportMetadata() {
|
|
||||||
return tabExportMetadata;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTabExportMetadata(TabExportMetadata tabExportMetadata) {
|
|
||||||
this.tabExportMetadata = tabExportMetadata;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SDMXExportMonitor [progress=" + progress + ", status=" + status
|
|
||||||
+ ", statusDescription=" + statusDescription + ", error="
|
|
||||||
+ error + ", url=" + url + ", tabExportMetadata="
|
|
||||||
+ tabExportMetadata + ", trId=" + trId + "]";
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,78 +0,0 @@
|
||||||
package org.gcube.portlets.user.td.gwtservice.shared.sdmx;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
import org.gcube.portlets.user.td.gwtservice.shared.task.State;
|
|
||||||
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @author "Giancarlo Panichi"
|
|
||||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class SDMXImportMonitor implements Serializable {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = -5998841163159590481L;
|
|
||||||
|
|
||||||
protected float progress;
|
|
||||||
protected State status;
|
|
||||||
protected String statusDescription;
|
|
||||||
protected Throwable error;
|
|
||||||
protected TRId trId;
|
|
||||||
|
|
||||||
public float getProgress(){
|
|
||||||
return progress;
|
|
||||||
};
|
|
||||||
|
|
||||||
public State getStatus(){
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getStatusDescription(){
|
|
||||||
return statusDescription;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProgress(float progress) {
|
|
||||||
this.progress = progress;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(State status) {
|
|
||||||
this.status = status;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatus(int status) {
|
|
||||||
this.status = State.values()[status];
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStatusDescription(String statusDescription) {
|
|
||||||
this.statusDescription = statusDescription;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Throwable getError() {
|
|
||||||
return error;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setError(Throwable error) {
|
|
||||||
this.error = error;
|
|
||||||
}
|
|
||||||
|
|
||||||
public TRId getTrId() {
|
|
||||||
return trId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTrId(TRId trId) {
|
|
||||||
this.trId = trId;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "SDMXImportMonitor [progress=" + progress + ", status=" + status
|
|
||||||
+ ", statusDescription=" + statusDescription + ", error="
|
|
||||||
+ error + ", trId=" + trId + "]";
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue