final CmdRunner runner = apiHelper.getSession().createCmdRunner();
// Response response = apiHelper.getSICommands().getSandboxInfo(sandbox.substring(0, sandbox.lastIndexOf('\\')));
/*
final CmdRunner runner = session.createCmdRunner();
*/
Command command = new Command(Command.SI);
command.setCommandName("viewnonmembers");
command.addOption(new Option("cwd", sandbox.substring(0, sandbox.lastIndexOf('\\'))));
command.addOption(new Option("recurse"));
command.addOption(new Option( "noincludeFormers" ));
/*
command.addOption(
new Option("fields", "locker,workingrev,workingcpid,deferred,type,name,memberrev,locksandbox"));
*/
System.err.println(command.toString());
final Response response;
final Set<String> types = new HashSet<String>();
final Set<String> modeltypes = new HashSet<String>();
try {
response = runner.execute(command);