KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > rmi > examples > replication > ReplicatedCommandEx


1 package org.sapia.ubik.rmi.examples.replication;
2
3 import org.sapia.ubik.rmi.replication.ReplicatedCommand;
4 import org.sapia.ubik.rmi.replication.ReplicatedInvoker;
5 import org.sapia.ubik.rmi.server.invocation.InvokeCommand;
6
7 import java.util.Set JavaDoc;
8
9
10 /**
11  * @author Yanick Duchesne
12  * <dl>
13  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2004 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
14  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
15  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
16  * </dl>
17  */

18 public class ReplicatedCommandEx extends ReplicatedCommand {
19   /** Constructor necessary for externalization. */
20   public ReplicatedCommandEx() {
21   }
22
23   public ReplicatedCommandEx(InvokeCommand command, Set JavaDoc targets,
24     ReplicatedInvoker invoker) {
25     super(command, targets, invoker, true);
26   }
27 }
28
Popular Tags