001/*
002 * Copyright 2002-2008 the original author or authors.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *      https://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package org.springframework.web.portlet.multipart;
018
019import javax.portlet.ActionRequest;
020
021import org.springframework.web.multipart.MultipartRequest;
022
023/**
024 * Interface which provides additional methods for dealing with multipart
025 * content within a portlet request, allowing to access uploaded files.
026 * Implementations also need to override the standard ActionRequest
027 * methods for parameter access, making multipart parameters available.
028 *
029 * <p>A concrete implementation is {@link DefaultMultipartActionRequest}.
030 *
031 * @author Juergen Hoeller
032 * @since 2.0
033 * @see PortletMultipartResolver
034 * @see org.springframework.web.multipart.MultipartFile
035 * @see javax.portlet.ActionRequest#getParameter
036 * @see javax.portlet.ActionRequest#getParameterNames
037 * @see javax.portlet.ActionRequest#getParameterMap
038 */
039public interface MultipartActionRequest extends ActionRequest, MultipartRequest {
040
041}