Package com.dtolabs.rundeck.core.common
Interface IFilesystemFramework
-
- All Known Implementing Classes:
FilesystemFramework,Framework
public interface IFilesystemFrameworkCreated by greg on 2/19/15.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.FilegetBaseDir()java.io.FilegetConfigDir()java.io.FilegetFrameworkProjectsBaseDir()java.io.FilegetLibextCacheDir()java.io.FilegetLibextCacheDir(IFramework fwk)java.io.FilegetLibextDir()java.io.FilegetLibextDir(IFramework fwk)IPropertyLookupgetPropertyLookup()
-
-
-
Method Detail
-
getConfigDir
java.io.File getConfigDir()
- Returns:
- the config dir
-
getFrameworkProjectsBaseDir
java.io.File getFrameworkProjectsBaseDir()
-
getLibextDir
java.io.File getLibextDir()
- Returns:
- the directory containing plugins/extensions for the framework.
-
getLibextDir
java.io.File getLibextDir(IFramework fwk)
-
getLibextCacheDir
java.io.File getLibextCacheDir()
- Returns:
- the cache directory used by the plugin system
-
getLibextCacheDir
java.io.File getLibextCacheDir(IFramework fwk)
-
getPropertyLookup
IPropertyLookup getPropertyLookup()
- Returns:
- a framework property lookup for this basedir
-
getBaseDir
java.io.File getBaseDir()
-
-