Package org.pentaho.reporting.engine.classic.core.util

Examples of org.pentaho.reporting.engine.classic.core.util.ConfigurationPropertyLookupParser


  }

  protected File createTargetFile()
  {
    final Configuration globalConfig = ClassicEngineBoot.getInstance().getGlobalConfig();
    final ConfigurationPropertyLookupParser parser = new ConfigurationPropertyLookupParser(globalConfig);
    final String fileName = parser.translateAndLookup(globalConfig.getConfigProperty
        ("org.pentaho.reporting.engine.classic.core.modules.misc.connections.file-data.targetLocation"));
    final File file = new File(fileName);
    file.getParentFile().mkdirs();
    return file;
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.util.ConfigurationPropertyLookupParser

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.