01: package uk.org.primrose.vendor.jboss;
02:
03: import java.io.IOException;
04:
05: public interface PrimroseWebConsoleBindingMBean {
06: public void start() throws IOException;
07:
08: public void stop() throws IOException;
09:
10: public void setPort(String port) throws IOException;
11:
12: public String getPort();
13:
14: public void setLogFile(String logFile) throws IOException;
15:
16: public String getLogFile();
17:
18: public void setLogLevel(String logLevel);
19:
20: public String getLogLevel();
21:
22: public void setUsername(String username);
23:
24: public void setPassword(String password);
25:
26: public String getUsername();
27:
28: public String getPassword();
29: }
|