View Javadoc

1   package org.lsst.ccs.command.remote;
2   
3   import org.lsst.ccs.command.CommandSet;
4   
5   /**
6    * A CommandSet which acts as a proxy for a remote CommandServer. 
7    * The contents of the command set may change as new servers register 
8    * or unregister.
9    * @author tonyj
10   */
11  public interface CommandClient extends CommandSet {
12      
13  }