1 21 package org.objectweb.jonas.discovery; 22 23 28 public interface EnrollerMBean { 29 35 int getListeningPort(); 36 37 41 void setListeningPort(int listeningPort); 42 43 46 String getListeningIp(); 47 48 52 void setListeningIp(String listeningIp); 53 54 60 void setTimeToLive(int ttl); 61 62 67 int getTimeToLive(); 68 69 73 void start(); 74 75 78 void stop(); 79 } 80 | Popular Tags |