/*
final CmdRunner runner = session.createCmdRunner();
*/
Command command = new Command(Command.SI);
command.setCommandName("viewsandbox");
command.addOption(new Option("sandbox", sandbox));
MultiValue mv = new MultiValue( "," );
mv.add( "name" );
mv.add( "context" );
mv.add( "wfdelta" );
mv.add( "memberrev" );
mv.add( "workingrev" );
mv.add( "revsyncdelta" );
mv.add( "memberarchive" );
mv.add( "cpid" );
mv.add("workingcpid");
command.addOption(new Option("fields", mv));
command.addOption(new Option("recurse"));
System.err.println(command.toString());
final Response response;
final Set<String> types = new HashSet<String>();
final Set<String> modeltypes = new HashSet<String>();
try {