Codota Logo
ConfigurationMetaData.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.jboss.metadata.ConfigurationMetaData
constructor

Best Java code snippets using org.jboss.metadata.ConfigurationMetaData.<init> (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
DateTime d =
  • Codota Iconnew DateTime()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseDateTime(text)
  • Codota IconObject instant;new DateTime(instant)
  • Smart code suggestions by Codota
}
origin: org.jboss.ws/jbossws-jboss510-metadata

/**
* Create a new ConfigurationMetaData.
*
* @param delegate the delegate
* @return the metadata
* @throws IllegalArgumentException for a null delegate or an unknown delegate
*/
public static ConfigurationMetaData create(ContainerConfigurationMetaData delegate)
{
 if (delegate == null)
   throw new IllegalArgumentException("Null delegate");
 return new ConfigurationMetaData(delegate);
}
origin: org.jboss/jboss-metadata

/**
* Create a new ConfigurationMetaData.
*
* @param delegate the delegate
* @return the metadata
* @throws IllegalArgumentException for a null delegate or an unknown delegate
*/
public static ConfigurationMetaData create(ContainerConfigurationMetaData delegate)
{
 if (delegate == null)
   throw new IllegalArgumentException("Null delegate");
 return new ConfigurationMetaData(delegate);
}
origin: org.jboss/jboss-metadata

/**
* Get the container configuration
* 
* @return the configuration
* @throws IllegalStateException when the configuration could not be determined
*/
public ConfigurationMetaData getContainerConfiguration()
{
 ContainerConfigurationMetaData containerConfigurationMetaData = getDelegate().determineContainerConfiguration();
 return new ConfigurationMetaData(containerConfigurationMetaData);
}
origin: org.jboss.ws/jbossws-jboss510-metadata

/**
* Get the container configuration
* 
* @return the configuration
* @throws IllegalStateException when the configuration could not be determined
*/
public ConfigurationMetaData getContainerConfiguration()
{
 ContainerConfigurationMetaData containerConfigurationMetaData = getDelegate().determineContainerConfiguration();
 return new ConfigurationMetaData(containerConfigurationMetaData);
}
origin: org.jboss/jboss-metadata

/**
* Get a configuration by name
* 
* @param name the configuration name
* @return the configuration or null if not found
* @throws IllegalArgumentException for a null name
*/
public ConfigurationMetaData getConfigurationMetaDataByName(String name)
{
 ContainerConfigurationMetaData delegate = getDelegate().getContainerConfiguration(name);
 if (delegate == null)
   return null;
 return new ConfigurationMetaData(delegate);
}
origin: org.jboss.ws/jbossws-jboss510-metadata

/**
* Get a configuration by name
* 
* @param name the configuration name
* @return the configuration or null if not found
* @throws IllegalArgumentException for a null name
*/
public ConfigurationMetaData getConfigurationMetaDataByName(String name)
{
 ContainerConfigurationMetaData delegate = getDelegate().getContainerConfiguration(name);
 if (delegate == null)
   return null;
 return new ConfigurationMetaData(delegate);
}
org.jboss.metadataConfigurationMetaData<init>

Javadoc

Create a new ConfigurationMetaData.

Popular methods of ConfigurationMetaData

  • getDelegate
  • getCallLogging
    Get whether call logging is enabled
  • getCommitOption
    Get the commit option
  • getContainerCacheConf
  • getContainerInterceptorsConf
  • getContainerPoolConf
  • getDefaultInvokerName
    Get the default invoker name
  • getInstanceCache
    Get the instance cache
  • getInstancePool
    Get the instance pool
  • getLockClass
    Get the locking class
  • getOptionDRefreshRate
    Get the option d refersh rate
  • getPersistenceManager
    Get the persistence manager
  • getOptionDRefreshRate,
  • getPersistenceManager,
  • getSecurityDomain,
  • getSyncOnCommitOnly,
  • getWebClassLoader,
  • isEjbStoreForClean,
  • isInsertAfterEjbPostCreate,
  • isStoreNotFlushed

Popular in Java

  • Start an intent from android
  • addToBackStack (FragmentTransaction)
  • notifyDataSetChanged (ArrayAdapter)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • ObjectMapper (com.fasterxml.jackson.databind)
    This mapper (or, data binder, or codec) provides functionality for converting between Java objects (
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now