1 11 12 13 package com.sun.jmx.snmp.daemon; 14 15 16 17 63 64 public interface CommunicatorServerMBean { 65 66 72 public void start() ; 73 74 80 public void stop() ; 81 82 87 public boolean isActive() ; 88 89 114 public boolean waitState(int state , long timeOut) ; 115 116 121 public int getState() ; 122 123 128 public String getStateString() ; 129 130 135 public String getHost() ; 136 137 142 public int getPort() ; 143 144 152 public void setPort(int port) throws java.lang.IllegalStateException ; 153 154 158 public abstract String getProtocol() ; 159 } 160 | Popular Tags |