private static final Log log = LogFactory.getLog(CacheConfigsXmlParser.class);
public Map<String, Configuration> parseConfigs(String fileName) throws CloneNotSupportedException
{
FileLookup fileLookup = new FileLookup();
InputStream is = fileLookup.lookupFile(fileName);
if (is == null)
{
throw new ConfigurationException("Unable to find config file " + fileName + " either in classpath or on the filesystem!");
}