01: package org.jgroups.jmx.protocols;
02:
03: import org.jgroups.jmx.ProtocolMBean;
04:
05: import java.net.InetAddress;
06:
07: /**
08: * @author Bela Ban
09: * @version $Id: MPINGMBean.java,v 1.1 2005/06/14 10:10:10 belaban Exp $
10: */
11: public interface MPINGMBean extends PINGMBean {
12: InetAddress getBindAddr();
13:
14: void setBindAddr(InetAddress bind_addr);
15:
16: boolean isBindToAllInterfaces();
17:
18: void setBindToAllInterfaces(boolean bind_to_all_interfaces);
19:
20: int getTTL();
21:
22: void setTTL(int ip_ttl);
23:
24: InetAddress getMcastAddr();
25:
26: void setMcastAddr(InetAddress mcast_addr);
27:
28: int getMcastPort();
29:
30: void setMcastPort(int mcast_port);
31: }
|