File rootDirOfJob = new File(new File(h.getRootDir(), "jobs"), name);
// place it as config.xml
File configXml = Items.getConfigFile(rootDirOfJob).getFile();
IOUtils.copy(stdin, configXml);
item = h.reloadProjectFromDisk(configXml.getParentFile());
} catch (IOException e) {
throw e;
}
}
return 0;