View Javadoc

1   /***
2    * Created on Nov 14, 2005, Copyright UC Regents
3    */
4   package wise2.converter;
5   
6   import java.io.IOException;
7   import java.io.InputStream;
8   
9   /***
10   * @author turadg
11   *
12   */
13  public interface IProjectUploadProvider {
14  
15  	/***
16  	 * 
17  	 * @param name of upload within the project's upload directory
18  	 * @return input stream for file with that name
19  	 * @throws IOException
20  	 */
21  	public InputStream getProjectUpload(String name) throws IOException;
22  	
23  }