]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - eclipse/rap/org.eclipse.rwt.widgets.upload/src/org/eclipse/rwt/widgets/IUploadConfiguration.java
Move upload widgets to commons
[lgpl/argeo-commons.git] / eclipse / rap / org.eclipse.rwt.widgets.upload / src / org / eclipse / rwt / widgets / IUploadConfiguration.java
diff --git a/eclipse/rap/org.eclipse.rwt.widgets.upload/src/org/eclipse/rwt/widgets/IUploadConfiguration.java b/eclipse/rap/org.eclipse.rwt.widgets.upload/src/org/eclipse/rwt/widgets/IUploadConfiguration.java
deleted file mode 100644 (file)
index 21ac68c..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2002-2006 Innoopract Informationssysteme GmbH. All rights
- * reserved. This program and the accompanying materials are made available
- * under the terms of the Eclipse Public License v1.0 which accompanies this
- * distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
- * Contributors: Innoopract Informationssysteme GmbH - initial API and
- * implementation
- ******************************************************************************/
-package org.eclipse.rwt.widgets;
-
-import org.apache.commons.fileupload.FileUploadBase;
-
-/**
- * Provides a configuration mechanism for the file upload. Note that this
- * configuration is shared for all upload widgets.
- * 
- * @author Stefan.Roeck
- */
-public interface IUploadConfiguration {
-
-  /**
-   *@see FileUploadBase#setFileSizeMax(long)
-   */
-  public void setFileMaxSize( long fileSizeMax );
-
-  /**
-   *@see FileUploadBase#getFileSizeMax()
-   */
-  public long getFileSizeMax();
-
-  /**
-   *@see FileUploadBase#setSizeMax(long)
-   */
-  public void setSizeMax( long sizeMax );
-
-  /**
-   *@see FileUploadBase#getSizeMax()
-   */
-  public long getSizeMax();
-}