private void setConfigNameAndFile(JSEArchiveMetaData umd, JBossWebMetaData jbossWebMetaData)
{
String configName = null;
String configFile = null;
WebserviceDescriptionsMetaData wsDescriptions = jbossWebMetaData.getWebserviceDescriptions();
if (wsDescriptions != null && wsDescriptions.size() > 1)
log.warn("Multiple <webservice-description> elements not supported");
if (wsDescriptions != null && wsDescriptions.size() > 0)
{
WebserviceDescriptionMetaData wsd = wsDescriptions.iterator().next();
configName = wsd.getConfigName();
configFile = wsd.getConfigFile();
}
List<ParamValueMetaData> contextParams = jbossWebMetaData.getContextParams();