View Javadoc

1   package org.lsst.ccs.bus;
2   
3   /**
4    * @author bamade
5    */
6   // Date: 07/04/2014
7   
8   public class UnparsedCommand  extends Command {
9       protected UnparsedCommand(String key, int level, String destination, String command) {
10          super(key, level, destination, command, Command.NO_ARGS);
11          unParsed = true ;
12      }
13  
14      @Deprecated
15      protected UnparsedCommand( String destination, String command) {
16          this("", 0, destination, command) ;
17      }
18  }