Author: wesw Date: Wed Jun 3 21:25:05 2009 New Revision: 781571 URL: http://svn.apache.org/viewvc?rev=781571&view=rev Log: first import, still need to create a struts-plugin.xml file that maps the beans.
Added: struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/UploadStatus.java Added: struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/UploadStatus.java URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/UploadStatus.java?rev=781571&view=auto ============================================================================== --- struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/UploadStatus.java (added) +++ struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/UploadStatus.java Wed Jun 3 21:25:05 2009 @@ -0,0 +1,110 @@ +/* + * $Id$ + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.struts2.fileupload; + +import java.util.Calendar; + +/** + * POJO for holding the status of a running upload. Instance access + * time is recorded to allow for simple cleanup. + * + * @author Wes W + */ +public class UploadStatus { + + private long lastAccess ; + private long bytesRead ; + private long contentLength ; + private long item ; + + /** + * + */ + public UploadStatus() { + updateLastAccess() ; + bytesRead = 0; + contentLength = 0; + item = 0; + } + + /** + * + */ + public long getLastAccess() { + return lastAccess; + } + + /** + * + */ + public long getBytesRead() { + updateLastAccess(); + return bytesRead; + } + + /** + * + */ + public void setBytesRead(long bytesRead) { + updateLastAccess(); + this.bytesRead = bytesRead; + } + + /** + * + */ + public long getContentLength() { + updateLastAccess(); + return contentLength; + } + + /** + * + */ + public void setContentLength(long contentLength) { + updateLastAccess(); + this.contentLength = contentLength; + } + + /** + * + */ + public long getItem() { + updateLastAccess(); + return item; + } + + /** + * + */ + public void setItem(long item) { + updateLastAccess(); + this.item = item; + } + + /** + * + */ + private void updateLastAccess() { + lastAccess = Calendar.getInstance().getTimeInMillis() / 1000 ; + } + +}