private Object innerExecute(String cmd) {
if (cmd != null && cmd.length() > 0) {
CommandInterpreter intcp = new FrameworkCommandInterpreter(cmd, commandProviders, con);
String command = intcp.nextArgument();
if (command != null)
return intcp.execute(command);
}
return null;
}
/**