View Javadoc

1   package org.lsst.ccs.command.remote;
2   
3   import org.lsst.ccs.command.CommandSet;
4   
5   /**
6    * A command server which waits to receive commands from a remote client
7    * @author tonyj
8    */
9   public class CommandServer {
10      private final CommandSet commands;
11      
12      public CommandServer(CommandSet commands) {
13          this.commands = commands;
14      }
15      public CommandSet getCommandSet() {
16          return commands;
17      }
18  
19  }