// jaxbDataFormat.setContextPath( sb.toString() );
// jaxbDataFormat.setPrettyPrint( true );
JAXBContext jaxbContext = JAXBContext.newInstance( sb.toString() );
List<GenericCommand< ? >> cmds = new ArrayList<GenericCommand< ? >>();
cmds.add( new InsertObjectCommand( new Person( "darth",
21 ),
"p" ) );
cmds.add( new GetGlobalCommand( "xxx" ) );
cmds.add( new SetGlobalCommand( "yyy",
new Person( "yoda",
21 ) ) );
BatchExecutionCommandImpl batch = new BatchExecutionCommandImpl( cmds );
Marshaller marshaller = jaxbContext.createMarshaller();
marshaller.setProperty( Marshaller.JAXB_FORMATTED_OUTPUT,