webadmin/src/wa/server/plugin/WAService.java

22 lines
501 B
Java
Raw Normal View History

2015-04-09 21:22:47 +00:00
package wa.server.plugin;
public interface WAService {
2015-04-22 15:33:08 +00:00
public String getName();
2015-05-19 15:52:00 +00:00
/**
* @return a service status object or null if it is not possible to check status
*/
2015-04-09 21:22:47 +00:00
public WAServiceStatus getStatus();
2015-05-19 15:52:00 +00:00
/**
* @return a installer object that will install the service or null if the installer is not available
*/
public WAInstaller getInstaller();
2015-06-05 10:26:52 +00:00
/**
* @return a array of configuration objects
*/
public WAConfiguration[] getConfigurations();
2015-04-09 21:22:47 +00:00
}