private static final String CONFIG = "config";
public static Map<String, Element> getStackConfigs(String stacksXmlResource) throws Exception
{
FileLookup fileLookup = new FileLookup();
InputStream is = fileLookup.lookupFile(stacksXmlResource);
if (is == null)
{
throw new ConfigurationException("Unable to find config file " + stacksXmlResource + " either in classpath or on the filesystem!");
}