View Javadoc
1   package com.atlassian.activeobjects.spi;
2   
3   /**
4    * Configuration settings for the ActiveObjects plugin.  Meant to be provided by the embedding product.
5    */
6   public interface ActiveObjectsPluginConfiguration {
7       /**
8        * @return the base directory for plugin databases, resolved from the product's home directory
9        */
10      String getDatabaseBaseDirectory();
11  }