Package de.xima.fc
Class PathHandler.FS
- java.lang.Object
-
- de.xima.fc.PathHandler.FS
-
- Enclosing class:
- PathHandler
public static final class PathHandler.FS extends Object
Zentrale Behandlung von Pfaden im lokalen FileSystem
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static String
getAktionWorkflowDirPath(Vorgang v, Aktion a)
Liefert den Pfad zum temporären Verzeichnis für die Verarbeitung der übergebenen Aktion innerhalb des übergebenen Vorgangs.static String
getAktionWorkflowDirPath(Vorgang v, Aktion a, String postfix)
static File
getBackupDir()
Deprecated.static String
getCacheDir()
static String
getCacheDirPath(String cacheName)
Deprecated.static <E extends IFileDataEntity<?>,T extends IFileProviding<?,E>>
StringgetCacheDirPath(T entity)
static File
getConfigDir()
static String
getDataDir()
static File
getDataDirFile()
static Path
getDataDirPath()
static File
getKerberosKRB5ConfigFile()
static File
getKerberosLoginConfigFile()
static File
getLicenseFile()
Deprecated.static Path
getMalwareScanDir()
static Path
getMalwareScanDir(boolean create)
static String
getMandantBaseDirPath(Mandant m)
Deprecated.static String
getMandantPluginDirPath(Mandant mandant)
Deprecated.static String
getNodeWorkflowDirPath(Vorgang formRecord, WorkflowNode node)
static String
getNodeWorkflowDirPath(Vorgang formRecord, WorkflowNode node, String postfix)
static String
getPluginBaseDirPath()
static String
getPluginDirPath(String scopeKey)
static String
getPluginDirPath(String scopeKey, String runtimeKey)
static String
getSharedWorkflowDirPath(Vorgang formRecord)
static String
getSharedWorkflowDirPath(Vorgang formRecord, String postfix)
static String
getSystemPluginDirPath()
Deprecated.static String
getTempDir()
static File
getTempFolder()
static File
getTempFolder(boolean createIfMissing)
static Path
getTempPath()
static String
getVorgangsAttachmentDirPath(Vorgang v)
Deprecated.static String
getVorgangsWorkflowDirPath(Vorgang v)
Liefert den Pfad zum temporären Verzeichnis für die Verarbeitung des übergebenen Vorgangs.static void
setConfigDir(File configDir)
static void
setDataDir(String configuredDataDir)
static void
setMalwareScanDir(Path scanDir)
static void
setTempDir(String customTempDir)
-
-
-
Method Detail
-
getPluginBaseDirPath
public static String getPluginBaseDirPath()
-
getDataDirFile
public static File getDataDirFile()
-
getDataDirPath
public static Path getDataDirPath()
-
getDataDir
public static String getDataDir()
-
getMalwareScanDir
public static Path getMalwareScanDir()
- Returns:
- The directory where files should be placed that may potentially contain malware. These files should be
scanned by a
IMalwareScanner
before they are used.
-
getMalwareScanDir
public static Path getMalwareScanDir(boolean create) throws IOException
- Parameters:
create
- Iftrue
, ensures the directory exists and creates it if not.- Returns:
- The directory where files should be placed that may potentially contain malware. These files should be
scanned by a
IMalwareScanner
before they are used. - Throws:
IOException
- When the directory does not exist and could not be created.
-
getTempFolder
public static File getTempFolder() throws IOException
- Throws:
IOException
-
getTempDir
public static String getTempDir()
-
getTempPath
public static Path getTempPath()
-
getTempFolder
public static File getTempFolder(boolean createIfMissing) throws IOException
- Throws:
IOException
-
getVorgangsWorkflowDirPath
public static String getVorgangsWorkflowDirPath(Vorgang v)
Liefert den Pfad zum temporären Verzeichnis für die Verarbeitung des übergebenen Vorgangs.
-
getCacheDir
public static String getCacheDir()
-
getCacheDirPath
@Deprecated public static String getCacheDirPath(String cacheName)
Deprecated.
-
getCacheDirPath
public static <E extends IFileDataEntity<?>,T extends IFileProviding<?,E>> String getCacheDirPath(T entity)
-
getAktionWorkflowDirPath
public static String getAktionWorkflowDirPath(Vorgang v, Aktion a)
Liefert den Pfad zum temporären Verzeichnis für die Verarbeitung der übergebenen Aktion innerhalb des übergebenen Vorgangs.
-
getNodeWorkflowDirPath
public static String getNodeWorkflowDirPath(Vorgang formRecord, WorkflowNode node)
-
getAktionWorkflowDirPath
public static String getAktionWorkflowDirPath(Vorgang v, Aktion a, String postfix)
-
getNodeWorkflowDirPath
public static String getNodeWorkflowDirPath(Vorgang formRecord, WorkflowNode node, String postfix)
-
getSharedWorkflowDirPath
public static String getSharedWorkflowDirPath(Vorgang formRecord, String postfix)
-
setConfigDir
public static void setConfigDir(File configDir)
-
setTempDir
public static void setTempDir(String customTempDir)
-
getKerberosLoginConfigFile
public static File getKerberosLoginConfigFile()
-
getKerberosKRB5ConfigFile
public static File getKerberosKRB5ConfigFile()
-
getConfigDir
public static File getConfigDir()
-
getLicenseFile
@Deprecated public static File getLicenseFile()
Deprecated.
-
setDataDir
public static void setDataDir(String configuredDataDir)
-
getMandantBaseDirPath
@Deprecated public static String getMandantBaseDirPath(Mandant m)
Deprecated.Liefert das mandantenspezifische Verzeichnis (nutzerdefiniert oder Standardwert), das für die Speicherung von Dateien verwendet werden kann.
-
getMandantPluginDirPath
@Deprecated public static String getMandantPluginDirPath(Mandant mandant) throws IOException
Deprecated.- Throws:
IOException
-
getSystemPluginDirPath
@Deprecated public static String getSystemPluginDirPath() throws IOException
Deprecated.- Throws:
IOException
-
getBackupDir
@Deprecated public static File getBackupDir()
Deprecated.Liefert den Pfad zum Backup-Verzeichnis alter FormCycle-Versionen (Wird nur noch für Übergangszeitraum benötigt)- Returns:
File
the backup-dir
-
getVorgangsAttachmentDirPath
@Deprecated public static String getVorgangsAttachmentDirPath(Vorgang v) throws IOException
Deprecated.Liefert den Pfad zum Verzeichnis für die Vorgangsdaten (Attachments).- Throws:
IOException
-
setMalwareScanDir
public static void setMalwareScanDir(Path scanDir)
- Parameters:
scanDir
- The directory where files should be placed that may potentially contain malware. These files should be scanned by aIMalwareScanner
before they are used.
-
-