mirror of
				https://github.com/scm-manager/scm-manager.git
				synced 2025-10-27 16:46:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			488 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			488 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * To change this template, choose Tools | Templates
 | |
|  * and open the template in the editor.
 | |
|  */
 | |
| 
 | |
| 
 | |
| 
 | |
| package sonia.scm.web.plugin;
 | |
| 
 | |
| //~--- JDK imports ------------------------------------------------------------
 | |
| 
 | |
| import java.io.IOException;
 | |
| import java.io.InputStream;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * @author Sebastian Sdorra
 | |
|  */
 | |
| public interface WebResource
 | |
| {
 | |
| 
 | |
|   /**
 | |
|    * Method description
 | |
|    *
 | |
|    *
 | |
|    * @return
 | |
|    *
 | |
|    * @throws IOException
 | |
|    */
 | |
|   public InputStream getContent() throws IOException;
 | |
| }
 |