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

32 lines
488 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.
*/
2010-10-31 13:07:43 +01:00
package sonia.scm.web.plugin;
2010-09-16 20:01:20 +02:00
//~--- JDK imports ------------------------------------------------------------
2010-09-20 14:51:10 +02:00
import java.io.IOException;
2010-09-16 20:01:20 +02:00
import java.io.InputStream;
/**
*
* @author Sebastian Sdorra
*/
2010-09-20 14:51:10 +02:00
public interface WebResource
2010-09-16 20:01:20 +02:00
{
/**
* Method description
*
*
* @return
*
2010-09-20 14:51:10 +02:00
* @throws IOException
2010-09-16 20:01:20 +02:00
*/
2010-09-20 14:51:10 +02:00
public InputStream getContent() throws IOException;
2010-09-16 20:01:20 +02:00
}