congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ApplicationConfiguration.getLogDir
Code IndexAdd Tabnine to your IDE (free)

How to use
getLogDir
method
in
uk.org.taverna.configuration.app.ApplicationConfiguration

Best Java code snippets using uk.org.taverna.configuration.app.ApplicationConfiguration.getLogDir (Showing top 2 results out of 315)

origin: uk.org.taverna.commandline/taverna-command-line

private static void setDerbyPaths() {
  System.setProperty("derby.system.home", getAppDirectory().getAbsolutePath());
  File logFile = new File(applicationConfiguration.getLogDir(), "derby.log");
  System.setProperty("derby.stream.error.file", logFile.getAbsolutePath());
}
origin: uk.org.taverna.configuration/taverna-database-configuration-impl

private void setDerbyPaths() {
  if (databaseConfiguration.getConnectorType() == DatabaseConfiguration.CONNECTOR_DERBY) {
    String homeDir = applicationConfiguration.getApplicationHomeDir().getAbsolutePath();
    System.setProperty("derby.system.home",homeDir);
    File logFile = new File(applicationConfiguration.getLogDir(), "derby.log");
    System.setProperty("derby.stream.error.file", logFile.getAbsolutePath());
  }
}
uk.org.taverna.configuration.appApplicationConfigurationgetLogDir

Popular methods of ApplicationConfiguration

  • getApplicationHomeDir

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • notifyDataSetChanged (ArrayAdapter)
  • startActivity (Activity)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now