Files
SCM-Manager/scm-web-api/src/main/java/sonia/scm/ScmWebPlugin.java

41 lines
607 B
Java
Raw Normal View History

2010-09-16 20:01:20 +02:00
/*
* 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();
}