Class CmsUploadProgessInfo

  • All Implemented Interfaces:
    com.google.gwt.user.client.rpc.IsSerializable

    public class CmsUploadProgessInfo
    extends java.lang.Object
    implements com.google.gwt.user.client.rpc.IsSerializable
    A bean that holds the upload progress infos.

    Since:
    8.0.0
    • Constructor Detail

      • CmsUploadProgessInfo

        public CmsUploadProgessInfo​(int currentFile,
                                    int percent,
                                    CmsUploadProgessInfo.UPLOAD_STATE state,
                                    long contentLength,
                                    long bytesRead)
        Constructor with parameters.

        Parameters:
        currentFile - the current file count
        percent - the progress in percent
        state - the state
        contentLength - the content length of the upload request
        bytesRead - the count of bytes read so far
    • Method Detail

      • getBytesRead

        public long getBytesRead()
        Returns the bytesRead.

        Returns:
        the bytesRead
      • getContentLength

        public long getContentLength()
        Returns the contentLength.

        Returns:
        the contentLength
      • getCurrentFile

        public int getCurrentFile()
        Returns the currentFile.

        Returns:
        the currentFile
      • getPercent

        public int getPercent()
        Returns the percent.

        Returns:
        the percent
      • setBytesRead

        public void setBytesRead​(long bytesRead)
        Sets the bytesRead.

        Parameters:
        bytesRead - the bytesRead to set
      • setContentLength

        public void setContentLength​(long contentLength)
        Sets the contentLength.

        Parameters:
        contentLength - the contentLength to set
      • setCurrentFile

        public void setCurrentFile​(int currentFile)
        Sets the currentFile.

        Parameters:
        currentFile - the currentFile to set
      • setPercent

        public void setPercent​(int percent)
        Sets the percent.

        Parameters:
        percent - the percent to set