tabular-data-gwt-service/src/main/java/org/gcube/portlets/user/td/gxtservice/shared/file/FileUploadState.java

29 lines
344 B
Java

/**
*
*/
package org.gcube.portlets.user.td.gxtservice.shared.file;
/**
* @author Federico De Faveri defaveri@isti.cnr.it
*
*/
public enum FileUploadState {
STARTED,
/**
* The operation is in progress.
*/
INPROGRESS,
/**
* The operation is completed.
*/
COMPLETED,
/**
* The operation is failed.
*/
FAILED;
}