private Map<String, String> aliasMap = new HashMap<String, String>();
private List<TestCommandListener> listeners = new ArrayList<TestCommandListener>();
public boolean execute(CommandState commandState) {
CommandPropertyValue fullCommandText = commandState.getProperties().get(CommandStateConstants.COMMAND_TEXT);
GlobalCommandState.getInstance().addProperty(CommandStateConstants.LAST_COMMAND, fullCommandText);
String commandText = fullCommandText.getValue();
String[] commandTerms = commandText.split(" ");
String[] extraTerms = new String[commandTerms.length -1];
if (commandTerms.length > 1) {
System.arraycopy(commandTerms, 1, extraTerms, 0, extraTerms.length);