Coverage Report - org.kuali.student.common.ui.client.dto.UploadStatus
 
Classes in this File Line Coverage Branch Coverage Complexity
UploadStatus
0%
0/23
N/A
1
UploadStatus$UploadTransferStatus
0%
0/1
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.common.ui.client.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.ArrayList;
 20  
 import java.util.List;
 21  
 
 22  
 /**
 23  
  * Simple class used to store upload progress information for the UploadServlet
 24  
  * 
 25  
  * @author Kuali Student Team
 26  
  *
 27  
  */
 28  0
 public class UploadStatus implements Serializable{
 29  
 
 30  
         private static final long serialVersionUID = 1L;
 31  
         
 32  0
         public static enum UploadTransferStatus{IN_PROGRESS, UPLOAD_FINISHED, COMMIT_FINISHED, ERROR, FILE_ERROR}
 33  
 
 34  
         private Long totalSize;
 35  
         private Long progress;
 36  0
         private UploadTransferStatus status = UploadTransferStatus.IN_PROGRESS;
 37  0
         private int itemsRead = 0;
 38  0
         private List<String> createdDocIds = new ArrayList<String>();
 39  0
         private List<FileStatus> fileStatusList = new ArrayList<FileStatus>();
 40  
         
 41  
         public Long getTotalSize() {
 42  0
                 return totalSize;
 43  
         }
 44  
         public void setTotalSize(Long totalSize) {
 45  0
                 this.totalSize = totalSize;
 46  0
         }
 47  
         public Long getProgress() {
 48  0
                 return progress;
 49  
         }
 50  
         public void setProgress(Long progress) {
 51  0
                 this.progress = progress;
 52  0
         }
 53  
         public UploadTransferStatus getStatus() {
 54  0
                 return status;
 55  
         }
 56  
         public void setStatus(UploadTransferStatus status) {
 57  0
                 this.status = status;
 58  0
         }
 59  
         public int getItemsRead() {
 60  0
                 return itemsRead;
 61  
         }
 62  
         public void setItemsRead(int itemsRead) {
 63  0
                 this.itemsRead = itemsRead;
 64  0
         }
 65  
         public List<String> getCreatedDocIds() {
 66  0
                 return createdDocIds;
 67  
         }
 68  
         public void setCreatedDocIds(List<String> createdDocIds) {
 69  0
                 this.createdDocIds = createdDocIds;
 70  0
         }
 71  
         public List<FileStatus> getFileStatusList() {
 72  0
                 return fileStatusList;
 73  
         }
 74  
         public void setFileStatusList(List<FileStatus> fileStatusList) {
 75  0
                 this.fileStatusList = fileStatusList;
 76  0
         }
 77  
 
 78  
         
 79  
         
 80  
         
 81  
 }