1 15 package org.apache.hivemind.management.mbeans; 16 17 import java.rmi.RemoteException ; 18 import java.rmi.NoSuchObjectException ; 19 20 26 public interface NamingServiceMBean 27 { 28 public void setPort(int port); 29 30 public int getPort(); 31 32 public boolean isRunning(); 33 34 public void start() throws RemoteException ; 35 36 public void stop() throws NoSuchObjectException ; 37 } | Popular Tags |