*/
protected void processCommand() throws Exception {
final String command = getRequest().getArgument( "command" );
final CommandExecuter cmd = new CommandExecuter( getDatabase(), getProperties(), cm, getLocale(), new CommandParser() );
final String output = cmd.execute( command );
getResponse().showText( output );
}