1 package org.lsst.ccs.bus;
2
3 /**
4 * A Command intended for a Subsystem (and not meant to be specific to a Module)
5 *
6 * @author bamade
7 */
8 // Date: 30/10/2013
9
10 //TODO : is it needed ?
11 public class SystemCommand extends Command {
12 private static final long serialVersionUID = 560172695080089084L;
13
14 //TODO : review key, and level ....
15 public SystemCommand(String destination, String command) {
16 super("", 0 , destination, command);
17 }
18
19 public SystemCommand(String destination, String command, Object[] parameters) {
20 super("",0, destination, command, parameters);
21 }
22
23 /*
24 @Override
25 public Object execute(CommandExecutor s) {
26 return null; //To change body of implemented methods use File | Settings | File Templates.
27 }
28 */
29 }