mirror of
				https://github.com/scm-manager/scm-manager.git
				synced 2025-10-31 18:46:07 +01:00 
			
		
		
		
	
		
			
	
	
		
			41 lines
		
	
	
		
			607 B
		
	
	
	
		
			Java
		
	
	
	
	
	
		
		
			
		
	
	
			41 lines
		
	
	
		
			607 B
		
	
	
	
		
			Java
		
	
	
	
	
	
|  | /*
 | ||
|  |  * To change this template, choose Tools | Templates
 | ||
|  |  * and open the template in the editor.
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | 
 | ||
|  | 
 | ||
|  | package sonia.scm;
 | ||
|  | 
 | ||
|  | //~--- non-JDK imports --------------------------------------------------------
 | ||
|  | 
 | ||
|  | import com.google.inject.Module;
 | ||
|  | 
 | ||
|  | //~--- JDK imports ------------------------------------------------------------
 | ||
|  | 
 | ||
|  | import java.io.InputStream;
 | ||
|  | 
 | ||
|  | /**
 | ||
|  |  *
 | ||
|  |  * @author Sebastian Sdorra
 | ||
|  |  */
 | ||
|  | public interface ScmWebPlugin
 | ||
|  | {
 | ||
|  | 
 | ||
|  |   /**
 | ||
|  |    * Method description
 | ||
|  |    *
 | ||
|  |    *
 | ||
|  |    * @return
 | ||
|  |    */
 | ||
|  |   public Module[] getModules();
 | ||
|  | 
 | ||
|  |   /**
 | ||
|  |    * Method description
 | ||
|  |    *
 | ||
|  |    *
 | ||
|  |    * @return
 | ||
|  |    */
 | ||
|  |   public InputStream getScript();
 | ||
|  | }
 |