com.sun.jersey.multipart.MultiPartConfig Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2010-2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* http://glassfish.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.jersey.multipart;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
* Injectable JavaBean containing the configuration parameters for {@code jersey-multipart} as used in this particular
* application.
*/
public class MultiPartConfig {
/**
* Load and customize (if necessary) the configuration values for the jersey-multipart
module.
*
* @throws IllegalArgumentException if the configuration resource exists, but there are problems reading it.
*/
public MultiPartConfig() {
configure();
}
/**
* Name of a properties resource that (if found in the classpath
* for this application) will be used to configure the settings returned
* by our getter methods.
*/
public static final String MULTI_PART_CONFIG_RESOURCE = "jersey-multipart-config.properties";
/**
* Name of the resource property for the bufferThreshold
* property.
*/
public static final String BUFFER_THRESHOLD_NAME = "bufferThreshold";
/**
* The threshold size (in bytes) above which a body part entity will be buffered to disk instead of being held in memory.
*/
private int bufferThreshold = 4096;
/**
* Return the size (in bytes) of the entity of an incoming {@link BodyPart} before it will be buffered to disk.
*
* The default value is {@code 4096}.
*/
public int getBufferThreshold() {
return bufferThreshold;
}
/**
* Configure the values returned by this instance's getters based on the contents of a properties resource,
* if it exists on the classpath for this application.
*
* @throws IllegalArgumentException if the configuration resource exists, but there are problems reading it.
*/
private void configure() {
// Identify the class loader we will use
ClassLoader loader = Thread.currentThread().getContextClassLoader();
if (loader == null) {
loader = this.getClass().getClassLoader();
}
// Attempt to find our properties resource
InputStream stream = null;
try {
stream = loader.getResourceAsStream(MULTI_PART_CONFIG_RESOURCE);
if (stream == null) {
return;
}
Properties props = new Properties();
props.load(stream);
if (props.containsKey(BUFFER_THRESHOLD_NAME)) {
this.bufferThreshold = Integer.valueOf(props.getProperty(BUFFER_THRESHOLD_NAME));
}
} catch (IOException e) {
throw new IllegalArgumentException(e);
} finally {
if (stream != null) {
try {
stream.close();
} catch (IOException e) {
// Pass through
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy