Package nexj.core.runtime.platform.generic

Examples of nexj.core.runtime.platform.generic.GenericConfig


     
      File journalPath = new File(m_channel.getOutgoingJournalPath());
     
      if (!journalPath.isAbsolute())
      {
         GenericConfig platformConfig = new GenericConfig();
        
         journalPath = new File(platformConfig.createDataDirectory(),
            m_channel.getOutgoingJournalPath());
      }

      mcf.setJournalDirectory(journalPath.getAbsolutePath());
View Full Code Here


      if (!journalPath.isAbsolute())
      {
         try
         {
            journalPath = new File(new GenericConfig().createDataDirectory(),
               m_fragment.getJournalPath());
         }
         catch (IOException e)
         {
            return null;
View Full Code Here

TOP

Related Classes of nexj.core.runtime.platform.generic.GenericConfig

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.