congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
JSEArchiveMetaData.setConfigName
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using org.jboss.wsf.spi.metadata.j2ee.JSEArchiveMetaData.setConfigName (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.setConfigName(wsDescriptionMD.getConfigName());
jseArchiveMD.setConfigFile(wsDescriptionMD.getConfigFile());
  jseArchiveMD.setConfigName(contextParam.getParamValue());
origin: org.jboss.ws/jbossws-jboss510

jseArchiveMD.setConfigName(wsDescriptionMD.getConfigName());
jseArchiveMD.setConfigFile(wsDescriptionMD.getConfigFile());
  jseArchiveMD.setConfigName(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.setConfigName(wsDescriptionMD.getConfigName());
jseArchiveMD.setConfigFile(wsDescriptionMD.getConfigFile());
  jseArchiveMD.setConfigName(contextParam.getParamValue());
origin: org.jboss.ws/jbossws-jboss423x

webMetaData.setServletMappings(wmd.getServletMappings());
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"));
origin: org.jboss.as/jboss-as-webservices-server-integration

if (jbossWebservicesMD.getConfigName() != null) {
 final String configName = jbossWebservicesMD.getConfigName();
 jseArchiveMD.setConfigName(configName);
 ROOT_LOGGER.settingConfigName(configName);
 final String configFile = jbossWebservicesMD.getConfigFile();
  if (WSConstants.JBOSSWS_CONFIG_NAME.equals(contextParam.getParamName())) {
    final String configName = contextParam.getParamValue();
    jseArchiveMD.setConfigName(configName);
    ROOT_LOGGER.settingConfigName(configName);
origin: org.jboss.ws/jbossws-jboss423

webMetaData.setServletMappings(wmd.getServletMappings());
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"));
origin: org.jboss.ws/jbossws-jboss421

webMetaData.setServletMappings(wmd.getServletMappings());
webMetaData.setServletClassNames(getServletClassMap(wmd));
webMetaData.setConfigName(wmd.getConfigName());
webMetaData.setConfigFile(wmd.getConfigFile());
webMetaData.setSecurityDomain(wmd.getSecurityDomain());
org.jboss.wsf.spi.metadata.j2eeJSEArchiveMetaDatasetConfigName

Popular methods of JSEArchiveMetaData

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

Popular in Java

  • Start an intent from android
  • getSupportFragmentManager (FragmentActivity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getExternalFilesDir (Context)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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