01: /*
02: * Created on 04-May-2006
03: */
04: package uk.org.ponder.springutil;
05:
06: import java.util.Map;
07:
08: import org.springframework.web.multipart.MultipartException;
09:
10: /** A bean that will deliver a Map of Spring MultipartFile objects, from
11: * a request scope where there has been a file upload.
12: * @author Antranig Basman (amb26@ponder.org.uk)
13: *
14: */
15:
16: public interface MultipartResolverBean {
17: public abstract Map getMultipartMap() throws MultipartException;
18:
19: }
|