Author: wesw Date: Wed Jun 3 21:24:57 2009 New Revision: 781569 URL: http://svn.apache.org/viewvc?rev=781569&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/FileItemFactoryWrapper.java Added: struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/FileItemFactoryWrapper.java URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/FileItemFactoryWrapper.java?rev=781569&view=auto ============================================================================== --- struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/FileItemFactoryWrapper.java (added) +++ struts/sandbox/trunk/src/main/java/org/apache/struts2/fileupload/FileItemFactoryWrapper.java Wed Jun 3 21:24:57 2009 @@ -0,0 +1,35 @@ +/* + * $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 org.apache.commons.fileupload.FileItemFactory; + +/** + * Quick interface to allow DiskFileItemFactoryWrapper to be + * wired in or replaced. + * + * @author Wes W + */ +public interface FileItemFactoryWrapper { + + public FileItemFactory getFileItemFactory(); + +}