public static final String WSDL_FILENAME_SUFFIX = ".wsdl";
public static final String COMMA = ",";
public Java2WSDLCodegenEngine(Map optionsMap) throws Exception {
//create a new Java2WSDLBuilder and populate it
Java2WSDLCommandLineOption option = loadOption(Java2WSDLConstants.CLASSNAME_OPTION, Java2WSDLConstants.CLASSNAME_OPTION_LONG, optionsMap);
String className = option == null ? null : option.getOptionValue();
if (className == null || className.length() == 0) {
throw new Exception("class name must be present!");
}