Tabnine Logo
JSEArchiveMetaData.setConfigFile
Code IndexAdd Tabnine to your IDE (free)

How to use
setConfigFile
method
in
org.jboss.wsf.spi.metadata.j2ee.JSEArchiveMetaData

Best Java code snippets using org.jboss.wsf.spi.metadata.j2ee.JSEArchiveMetaData.setConfigFile (Showing top 12 results out of 315)

origin: org.jboss.ws/jbossws-jboss500Beta4

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();
 if (contextParams != null)
 {
   for (ParamValueMetaData ctxParam : contextParams)
   {
    if (ctxParam.getParamName().equals("jbossws-config-name"))
      configName = ctxParam.getParamValue();
    if (ctxParam.getParamName().equals("jbossws-config-file"))
      configFile = ctxParam.getParamValue();
   }
 }
 
 umd.setConfigName(configName);
 umd.setConfigFile(configFile);
}
origin: org.jboss.ws/jbossws-jboss501CR1

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();
 if (contextParams != null)
 {
   for (ParamValueMetaData ctxParam : contextParams)
   {
    if (ctxParam.getParamName().equals("jbossws-config-name"))
      configName = ctxParam.getParamValue();
    if (ctxParam.getParamName().equals("jbossws-config-file"))
      configFile = ctxParam.getParamValue();
   }
 }
 
 umd.setConfigName(configName);
 umd.setConfigFile(configFile);
}
origin: org.jboss.ws/jbossws-jboss500x

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();
 if (contextParams != null)
 {
   for (ParamValueMetaData ctxParam : contextParams)
   {
    if (ctxParam.getParamName().equals("jbossws-config-name"))
      configName = ctxParam.getParamValue();
    if (ctxParam.getParamName().equals("jbossws-config-file"))
      configFile = ctxParam.getParamValue();
   }
 }
 
 umd.setConfigName(configName);
 umd.setConfigFile(configFile);
}
origin: org.jboss.ws/jbossws-jboss600M2

jseArchiveMD.setConfigFile(wsDescriptionMD.getConfigFile());
  jseArchiveMD.setConfigFile(contextParam.getParamValue());
origin: org.jboss.ws/jbossws-jboss510

jseArchiveMD.setConfigFile(wsDescriptionMD.getConfigFile());
  jseArchiveMD.setConfigFile(contextParam.getParamValue());
origin: org.jboss.ws/jbossws-jboss510x

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();
 if (contextParams != null)
 {
   for (ParamValueMetaData ctxParam : contextParams)
   {
    if (ctxParam.getParamName().equals("jbossws-config-name"))
      configName = ctxParam.getParamValue();
    if (ctxParam.getParamName().equals("jbossws-config-file"))
      configFile = ctxParam.getParamValue();
   }
 }
 
 umd.setConfigName(configName);
 umd.setConfigFile(configFile);
}
origin: org.jboss.ws/jbossws-jboss600x

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();
 if (contextParams != null)
 {
   for (ParamValueMetaData ctxParam : contextParams)
   {
    if (ctxParam.getParamName().equals("jbossws-config-name"))
      configName = ctxParam.getParamValue();
    if (ctxParam.getParamName().equals("jbossws-config-file"))
      configFile = ctxParam.getParamValue();
   }
 }
 
 umd.setConfigName(configName);
 umd.setConfigFile(configFile);
}
origin: org.jboss.ws/jbossws-jboss501

jseArchiveMD.setConfigFile(wsDescriptionMD.getConfigFile());
  jseArchiveMD.setConfigFile(contextParam.getParamValue());
origin: org.jboss.ws/jbossws-jboss423x

webMetaData.setServletClassNames(getServletClassMap(wmd));
webMetaData.setConfigName(wmd.getConfigName());
webMetaData.setConfigFile(wmd.getConfigFile());
Map contextParams = wmd.getContextParams();
if (contextParams.containsKey("jbossws-config-name"))
  webMetaData.setConfigName((String)contextParams.get("jbossws-config-name"));
if (contextParams.containsKey("jbossws-config-file"))
  webMetaData.setConfigFile((String)contextParams.get("jbossws-config-file"));
webMetaData.setSecurityDomain(wmd.getSecurityDomain());
webMetaData.setPublishLocationAdapter(getPublishLocationAdpater(wmd));
origin: org.jboss.as/jboss-as-webservices-server-integration

ROOT_LOGGER.settingConfigName(configName);
final String configFile = jbossWebservicesMD.getConfigFile();
jseArchiveMD.setConfigFile(configFile);
ROOT_LOGGER.settingConfigFile(configFile);
   jseArchiveMD.setConfigFile(configFile);
   ROOT_LOGGER.settingConfigFile(configFile);
origin: org.jboss.ws/jbossws-jboss423

webMetaData.setServletClassNames(getServletClassMap(wmd));
webMetaData.setConfigName(wmd.getConfigName());
webMetaData.setConfigFile(wmd.getConfigFile());
Map contextParams = wmd.getContextParams();
if (contextParams.containsKey("jbossws-config-name"))
  webMetaData.setConfigName((String)contextParams.get("jbossws-config-name"));
if (contextParams.containsKey("jbossws-config-file"))
  webMetaData.setConfigFile((String)contextParams.get("jbossws-config-file"));
webMetaData.setSecurityDomain(wmd.getSecurityDomain());
webMetaData.setPublishLocationAdapter(getPublishLocationAdpater(wmd));
origin: org.jboss.ws/jbossws-jboss421

webMetaData.setServletClassNames(getServletClassMap(wmd));
webMetaData.setConfigName(wmd.getConfigName());
webMetaData.setConfigFile(wmd.getConfigFile());
webMetaData.setSecurityDomain(wmd.getSecurityDomain());
webMetaData.setPublishLocationAdapter(getPublishLocationAdpater(wmd));
org.jboss.wsf.spi.metadata.j2eeJSEArchiveMetaDatasetConfigFile

Popular methods of JSEArchiveMetaData

  • <init>
  • setConfigName
  • setContextRoot
  • setPublishLocationAdapter
  • setSecurityDomain
  • setSecurityMetaData
  • setServletClassNames
  • setServletMappings
  • getSecurityMetaData
  • getServletMappings
  • getContextRoot
  • getConfigFile
  • getContextRoot,
  • getConfigFile,
  • getConfigName,
  • getSecurityDomain,
  • getServletClassNames,
  • getWsdlPublishLocationByName

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • compareTo (BigDecimal)
  • setScale (BigDecimal)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now