ehcache

net.sf.ehcache.config
Class ConfigurationFactory

java.lang.Object
  extended by net.sf.ehcache.config.ConfigurationFactory

public final class ConfigurationFactory
extends java.lang.Object

A utility class which configures beans from XML, using reflection.

Version:
$Id: ConfigurationFactory.java 631 2008-05-23 22:17:52Z gregluck $
Author:
Greg Luck

Method Summary
(package private) static java.util.Set extractPropertyTokens(java.lang.String sourceDocument)
          Extracts properties of the form ${...}
static Configuration parseConfiguration()
          Configures a bean from an XML file in the classpath.
static Configuration parseConfiguration(java.io.File file)
          Configures a bean from an XML file.
static Configuration parseConfiguration(java.io.InputStream inputStream)
          Configures a bean from an XML input stream.
static Configuration parseConfiguration(java.net.URL url)
          Configures a bean from an XML file available as an URL.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

parseConfiguration

public static Configuration parseConfiguration(java.io.File file)
                                        throws CacheException
Configures a bean from an XML file.

Throws:
CacheException

parseConfiguration

public static Configuration parseConfiguration(java.net.URL url)
                                        throws CacheException
Configures a bean from an XML file available as an URL.

Throws:
CacheException

parseConfiguration

public static Configuration parseConfiguration()
                                        throws CacheException
Configures a bean from an XML file in the classpath.

Throws:
CacheException

parseConfiguration

public static Configuration parseConfiguration(java.io.InputStream inputStream)
                                        throws CacheException
Configures a bean from an XML input stream.

Throws:
CacheException

extractPropertyTokens

static java.util.Set extractPropertyTokens(java.lang.String sourceDocument)
Extracts properties of the form ${...}

Parameters:
sourceDocument - the source document
Returns:
a Set of properties. So, duplicates are only counted once.

ehcache