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

16 lines
267 B
Java
Raw Normal View History

2015-04-09 21:22:47 +00:00
package wa.server.plugin;
public interface WAService {
public enum WAServiceStatus{
RUNNING,
NOT_RESPONDING,
UNAVAILABLE,
UNKNOWN
}
2015-04-22 15:33:08 +00:00
public String getName();
2015-04-09 21:22:47 +00:00
public void start();
public void stop();
public WAServiceStatus getStatus();
}