View Javadoc

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  public class UploadStatus implements Serializable{
29  
30  	private static final long serialVersionUID = 1L;
31  	
32  	public static enum UploadTransferStatus{IN_PROGRESS, UPLOAD_FINISHED, COMMIT_FINISHED, ERROR, FILE_ERROR}
33  
34  	private Long totalSize;
35  	private Long progress;
36  	private UploadTransferStatus status = UploadTransferStatus.IN_PROGRESS;
37  	private int itemsRead = 0;
38  	private List<String> createdDocIds = new ArrayList<String>();
39  	private List<FileStatus> fileStatusList = new ArrayList<FileStatus>();
40  	
41  	public Long getTotalSize() {
42  		return totalSize;
43  	}
44  	public void setTotalSize(Long totalSize) {
45  		this.totalSize = totalSize;
46  	}
47  	public Long getProgress() {
48  		return progress;
49  	}
50  	public void setProgress(Long progress) {
51  		this.progress = progress;
52  	}
53  	public UploadTransferStatus getStatus() {
54  		return status;
55  	}
56  	public void setStatus(UploadTransferStatus status) {
57  		this.status = status;
58  	}
59  	public int getItemsRead() {
60  		return itemsRead;
61  	}
62  	public void setItemsRead(int itemsRead) {
63  		this.itemsRead = itemsRead;
64  	}
65  	public List<String> getCreatedDocIds() {
66  		return createdDocIds;
67  	}
68  	public void setCreatedDocIds(List<String> createdDocIds) {
69  		this.createdDocIds = createdDocIds;
70  	}
71  	public List<FileStatus> getFileStatusList() {
72  		return fileStatusList;
73  	}
74  	public void setFileStatusList(List<FileStatus> fileStatusList) {
75  		this.fileStatusList = fileStatusList;
76  	}
77  
78  	
79  	
80  	
81  }