Initial commit
This commit is contained in:
commit
aa4e110832
69 changed files with 17898 additions and 0 deletions
14
src/wa/server/plugin/WAService.java
Normal file
14
src/wa/server/plugin/WAService.java
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package wa.server.plugin;
|
||||
|
||||
public interface WAService {
|
||||
public enum WAServiceStatus{
|
||||
RUNNING,
|
||||
NOT_RESPONDING,
|
||||
UNAVAILABLE,
|
||||
UNKNOWN
|
||||
}
|
||||
|
||||
public void start();
|
||||
public void stop();
|
||||
public WAServiceStatus getStatus();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue