* the exception
*/
public void generate() throws Exception {
LogOutputStream logOutputStream = new LogOutputStream(log,
Integer.MAX_VALUE);
WsgenTool genTool = new WsgenTool(logOutputStream);
List<String> args = new ArrayList<String>();
configurImportToolOptions(args);
mergeOriginalArgs(args);
boolean success = genTool.run(args.toArray(new String[args.size()]));
if (success) {
log.info("Code generation completed");
}
}