KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > jmx > protocols > MPINGMBean


1 package org.jgroups.jmx.protocols;
2
3 import org.jgroups.jmx.ProtocolMBean;
4
5 import java.net.InetAddress JavaDoc;
6 import java.util.List JavaDoc;
7
8 /**
9  * @author Bela Ban
10  * @version $Id: MPINGMBean.java,v 1.2 2007/07/02 11:16:07 belaban Exp $
11  */

12 public interface MPINGMBean extends PINGMBean {
13     InetAddress JavaDoc getBindAddr();
14     void setBindAddr(InetAddress JavaDoc bind_addr);
15     boolean isReceiveOnAllInterfaces();
16     List JavaDoc getReceiveInterfaces();
17     boolean isSendOnAllInterfaces();
18     List JavaDoc getSendInterfaces();
19     int getTTL();
20     void setTTL(int ip_ttl);
21     InetAddress JavaDoc getMcastAddr();
22     void setMcastAddr(InetAddress JavaDoc mcast_addr);
23     int getMcastPort();
24     void setMcastPort(int mcast_port);
25 }
26
Popular Tags