Package org.jboss.cache.util

Examples of org.jboss.cache.util.FileLookup


   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!");
      }
View Full Code Here


    * @param filename the name of the XML file to parse.
    * @return a configured Configuration object representing the configuration in the file
    */
   public Configuration parseFile(String filename)
   {
      InputStream is = new FileLookup().lookupFile(filename);
      if (is == null)
      {
         throw new ConfigurationException("Unable to find config file " + filename + " either in classpath or on the filesystem!");
      }

View Full Code Here

   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!");
      }
View Full Code Here

TOP

Related Classes of org.jboss.cache.util.FileLookup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.