Uses of Class
org.jboss.cache.config.ConfigurationException

Packages that use ConfigurationException
org.jboss.cache   
org.jboss.cache.config   
org.jboss.cache.eviction   
org.jboss.cache.jmx   
 

Uses of ConfigurationException in org.jboss.cache
 

Methods in org.jboss.cache that throw ConfigurationException
 Cache<K,V> CacheFactory.createCache()
          Creates and starts a Cache instance using default configuration settings.
 Cache<K,V> DefaultCacheFactory.createCache()
           
 Cache<K,V> CacheFactory.createCache(boolean start)
          Creates and optionally starts a Cache instance using default configuration settings.
 Cache<K,V> DefaultCacheFactory.createCache(boolean start)
           
 Cache<K,V> CacheFactory.createCache(Configuration configuration)
          Creates a Cache instance based on a Configuration passed in.
 Cache<K,V> DefaultCacheFactory.createCache(Configuration configuration)
          This implementation clones the configuration passed in before using it.
 Cache<K,V> CacheFactory.createCache(Configuration configuration, boolean start)
          Creates Cache instance, and optionally starts it, based on a Configuration passed in.
 Cache<K,V> DefaultCacheFactory.createCache(Configuration configuration, boolean start)
          This implementation clones the configuration passed in before using it.
 Cache<K,V> CacheFactory.createCache(java.lang.String configFileName)
          Creates and starts a Cache instance.
 Cache<K,V> DefaultCacheFactory.createCache(java.lang.String configFileName)
           
 Cache<K,V> CacheFactory.createCache(java.lang.String configFileName, boolean start)
          Creates Cache instance, and optionally starts it.
 Cache<K,V> DefaultCacheFactory.createCache(java.lang.String configFileName, boolean start)
           
 

Uses of ConfigurationException in org.jboss.cache.config
 

Methods in org.jboss.cache.config that throw ConfigurationException
 void EvictionPolicyConfig.validate()
          Validate the configuration.
 

Uses of ConfigurationException in org.jboss.cache.eviction
 

Methods in org.jboss.cache.eviction that throw ConfigurationException
 void ElementSizeConfiguration.validate()
          Requires a positive maxElementsPerNode value or ConfigurationException is thrown.
 void EvictionPolicyConfigBase.validate()
           
 void FIFOConfiguration.validate()
          Requires a positive maxNodes value or ConfigurationException is thrown.
 void LRUConfiguration.validate()
          Requires a positive timeToLiveSeconds value or ConfigurationException is thrown.
 void MRUConfiguration.validate()
          Requires a positive maxNodes value or ConfigurationException is thrown.
 

Uses of ConfigurationException in org.jboss.cache.jmx
 

Methods in org.jboss.cache.jmx that throw ConfigurationException
protected  void CacheJmxWrapper.constructCache()