Interface SystemManager
- 
 public interface SystemManager
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.FilegetDataDir()Returns the data directory for the system.java.io.FilegetEtcDir()java.io.FilegetLibDir()Provides the path to the lib folder, which holds all the jars used by Ignition.java.io.FilegetLocalDir()Provides the path to thelocalfolder.java.io.FilegetLogsDir()Provides the path to thelogsfolder.java.io.FilegetTempDir()Returns a temp dir that is managed by the context (cleaned out on startup.)java.io.FilegetUserLibDir()Provides the path to theuserlibfolder.
 
- 
- 
- 
Method Detail- 
getDataDirjava.io.File getDataDir() Returns the data directory for the system. All created data will be contained in this folder.- Returns:
- a File object representing the data folder.
 
 - 
getLibDirjava.io.File getLibDir() Provides the path to the lib folder, which holds all the jars used by Ignition. This value is always relative to the installation folder.- Returns:
- a File object representing the lib folder.
 
 - 
getUserLibDirjava.io.File getUserLibDir() Provides the path to theuserlibfolder. The userlib folder contains binaries that can be changed by the user. These binaries include the modules and the jdbc jars. The value is taken from theuserlib.dircontext parameter in webserver/webapps/main/WEB-INF/web.xml.- Returns:
- a File object representing the userlib folder.
 
 - 
getLogsDirjava.io.File getLogsDir() Provides the path to thelogsfolder. The logs folder holds all the important log files used by Ignition. The value is taken from thelogs.dircontext parameter in webserver/webapps/main/WEB-INF/web.xml.- Returns:
- a File object representing the logs folder.
 
 - 
getTempDirjava.io.File getTempDir() Returns a temp dir that is managed by the context (cleaned out on startup.)
 - 
getEtcDirjava.io.File getEtcDir() 
 - 
getLocalDirjava.io.File getLocalDir() Provides the path to thelocalfolder. The local folder contains all internal database files for the local historian, audit log, and alarm journal. Excluded from gateway backups. The value is taken from thelocal.dircontext parameter in webserver/webapps/main/WEB-INF/web.xml.- Returns:
- a File object representing the local folder.
 
 
- 
 
-