01: package org.jgroups.jmx.protocols;
02:
03: import org.jgroups.jmx.Protocol;
04:
05: /**
06: * @author Bela Ban
07: * @version $Id: TCPPING.java,v 1.1 2005/06/14 10:10:10 belaban Exp $
08: */
09: public class TCPPING extends Discovery implements TCPPINGMBean {
10:
11: public TCPPING() {
12: }
13:
14: public TCPPING(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: }
|