/** Just in case you want to dump out the contents to disk */
private static void dumpGeneratedSourceToDisk(RuleSetLoader ruleSetLoader) throws IOException,
FileNotFoundException {
Map map = ruleSetLoader.getRuleSets();
RuleSetCompiler compiler = (RuleSetCompiler) map.values().iterator().next();
byte[] jar = compiler.getSourceDeploymentJar();
//will put all the sources in the folling jar
File file = new File("/helloworld.jar");
if (file.exists()) file.delete();
FileOutputStream out = new FileOutputStream(file);
out.write(jar);