01: package org.jgroups.jmx.protocols;
02:
03: import org.jgroups.jmx.Protocol;
04:
05: /**
06: * @author Bela Ban
07: * @version $Id: PING.java,v 1.2 2005/06/14 09:51:08 belaban Exp $
08: */
09: public class PING extends Discovery implements PINGMBean {
10:
11: public PING() {
12: }
13:
14: public PING(org.jgroups.stack.Protocol p) {
15: super (p);
16: this .p = (org.jgroups.protocols.PING) p;
17: }
18:
19: public void attachProtocol(org.jgroups.stack.Protocol p) {
20: super .attachProtocol(p);
21: this .p = (org.jgroups.protocols.PING) p;
22: }
23: }
|