ehcache

Uses of Class
net.sf.ehcache.config.Configuration

Packages that use Configuration
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.config This package contains the cache configuration code. 
net.sf.ehcache.config.generator This package contains utility classes for generating configuration texts. 
net.sf.ehcache.management.provider This package contains classes related to MBeanRegistrationProvider and its implementation. 
 

Uses of Configuration in net.sf.ehcache
 

Methods in net.sf.ehcache with parameters of type Configuration
protected  void CacheManager.init(Configuration configuration, java.lang.String configurationFileName, java.net.URL configurationURL, java.io.InputStream configurationInputStream)
          initialises the CacheManager
 

Constructors in net.sf.ehcache with parameters of type Configuration
CacheManager(Configuration configuration)
          An constructor for CacheManager, which takes a configuration object, rather than one created by parsing an ehcache.xml file.
 

Uses of Configuration in net.sf.ehcache.config
 

Methods in net.sf.ehcache.config that return Configuration
 Configuration ConfigurationHelper.getConfigurationBean()
           
static Configuration ConfigurationFactory.parseConfiguration()
          Configures a bean from an XML file in the classpath.
static Configuration ConfigurationFactory.parseConfiguration(java.io.File file)
          Configures a bean from an XML file.
static Configuration ConfigurationFactory.parseConfiguration(java.io.InputStream inputStream)
          Configures a bean from an XML input stream.
static Configuration ConfigurationFactory.parseConfiguration(java.net.URL url)
          Configures a bean from an XML file available as an URL.
 

Constructors in net.sf.ehcache.config with parameters of type Configuration
ConfigurationHelper(CacheManager cacheManager, Configuration configuration)
          Only Constructor
 

Uses of Configuration in net.sf.ehcache.config.generator
 

Methods in net.sf.ehcache.config.generator that return Configuration
abstract  Configuration ConfigurationSource.createConfiguration()
          Abstract method used for creating a Configuration based on the source
 

Methods in net.sf.ehcache.config.generator with parameters of type Configuration
 java.lang.String ConfigurationGenerator.generate(Configuration configuration, CacheConfiguration defaultCacheConfiguration, java.util.Map<java.lang.String,CacheConfiguration> cacheConfigs)
          Generates the configuration text for the provided Configuration, the default CacheConfiguration and the map of CacheConfiguration's
static java.lang.String ConfigurationUtil.generateConfigurationTextFromConfiguration(CacheManager cacheManager, Configuration configuration)
          Generates configuration text based on the input Configuration.
 

Uses of Configuration in net.sf.ehcache.management.provider
 

Methods in net.sf.ehcache.management.provider with parameters of type Configuration
 MBeanRegistrationProvider MBeanRegistrationProviderFactoryImpl.createMBeanRegistrationProvider(Configuration config)
          Factory Method for creating MBeanRegistrationProvider
 MBeanRegistrationProvider MBeanRegistrationProviderFactory.createMBeanRegistrationProvider(Configuration config)
          Factory Method for creating MBeanRegistrationProvider
 

Constructors in net.sf.ehcache.management.provider with parameters of type Configuration
MBeanRegistrationProviderImpl(Configuration configuration)
          Constructor accepting the Configuration
 


ehcache

true