001 // Copyright 2007, 2008 The Apache Software Foundation 002 // 003 // Licensed under the Apache License, Version 2.0 (the "License"); 004 // you may not use this file except in compliance with the License. 005 // You may obtain a copy of the License at 006 // 007 // http://www.apache.org/licenses/LICENSE-2.0 008 // 009 // Unless required by applicable law or agreed to in writing, software 010 // distributed under the License is distributed on an "AS IS" BASIS, 011 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 012 // See the License for the specific language governing permissions and 013 // limitations under the License. 014 015 package org.apache.tapestry5.upload.services; 016 017 /** 018 * Configuration symbols. 019 */ 020 public final class UploadSymbols 021 { 022 /** 023 * Location where temporary files will be written. Defaults to java.io.tmpdir property. 024 */ 025 public static final String REPOSITORY_LOCATION = "upload.repository-location"; 026 027 /** 028 * Threshold (in bytes) that determines when an uploaded file will be written to the repository. 029 */ 030 public static final String REPOSITORY_THRESHOLD = "upload.repository-threshold"; 031 032 /** 033 * Maximum size (in bytes) of a single upload request Defaults to -1 (no limit). 034 */ 035 public static final String REQUESTSIZE_MAX = "upload.requestsize-max"; 036 037 /** 038 * Maximum size (in bytes) of a single file within an upload request Defaults to -1 (no limit). 039 */ 040 public static final String FILESIZE_MAX = "upload.filesize-max"; 041 042 private UploadSymbols() 043 { 044 } 045 }