private ConfigurationDocument createConfigFile(StringToStringMap values) {
ConfigurationDocument configDocument = ConfigurationDocument.Factory.newInstance();
ConfigurationType config = configDocument.addNewConfiguration();
JavaToWsdlType java2Wsdl = config.addNewJavaWsdl();
ServiceType service = java2Wsdl.addNewService();
service.setEndpoint(values.get(ENDPOINT));
service.setStyle(Style.Enum.forString(values.get(STYLE)));
service.setParameterStyle(ParameterStyle.Enum.forString(values.get(PARAMETER_STYLE)));
service.setName(values.get(SERVICE_NAME));
MappingType mapping = java2Wsdl.addNewMapping();
mapping.setFile(values.get(MAPPING));
NamespacesType namespaces = java2Wsdl.addNewNamespaces();