KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.jgroups.jmx.protocols;
2
3 import org.jgroups.jmx.Protocol;
4
5 /**
6  * @author Bela Ban
7  * @version $Id: TCPGOSSIP.java,v 1.1 2005/06/14 10:10:10 belaban Exp $
8  */

9 public class TCPGOSSIP extends Discovery implements TCPGOSSIPMBean {
10
11     public TCPGOSSIP() {
12     }
13
14     public TCPGOSSIP(org.jgroups.stack.Protocol p) {
15         super(p);
16     }
17
18     public void attachProtocol(org.jgroups.stack.Protocol p) {
19         super.attachProtocol(p);
20     }
21 }
22
Popular Tags