Interface VaultFileSystem
-
public interface VaultFileSystem
VaultFileSystem
...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregateManager
getAggregateManager()
Returns the attached artifacts manager.VaultFsConfig
getConfig()
Returns the vault configuration that is usedVaultFile
getFile(java.lang.String path)
Returns the file at the given path.VaultFile
getFile(VaultFile parent, java.lang.String path)
Returns the file at the given path.VaultFile
getRoot()
Returns the root fileWorkspaceFilter
getWorkspaceFilter()
Returns the current workspace filtervoid
invalidate()
Flushes the file cacheboolean
isMounted()
Checks if this tree is still mounted and if the attached session is still live.VaultFsTransaction
startTransaction()
Starts a new transaction.void
unmount()
Releases all resources attached to this Vault filesystem
-
-
-
Method Detail
-
unmount
void unmount() throws RepositoryException
Releases all resources attached to this Vault filesystem- Throws:
RepositoryException
- if an error occurs.
-
isMounted
boolean isMounted()
Checks if this tree is still mounted and if the attached session is still live.- Returns:
true
if still mounted
-
getRoot
VaultFile getRoot()
Returns the root file- Returns:
- the root file
-
getAggregateManager
AggregateManager getAggregateManager()
Returns the attached artifacts manager.- Returns:
- the attached artifacts manager.
-
getFile
VaultFile getFile(java.lang.String path) throws java.io.IOException, RepositoryException
Returns the file at the given path. If the file does not existsnull
is thrown.- Parameters:
path
- the path of the file- Returns:
- the file or
null
- Throws:
java.io.IOException
- if an I/O error occurs.RepositoryException
- if a repository error occurs.
-
getFile
VaultFile getFile(VaultFile parent, java.lang.String path) throws java.io.IOException, RepositoryException
Returns the file at the given path. The path can be relative and may contain ".." path elements. If the file does not existsnull
is returned.- Parameters:
parent
- the parent file.path
- the path of the file- Returns:
- the file or
null
- Throws:
java.io.IOException
- if an I/O error occurs.RepositoryException
- if a repository error occurs.
-
startTransaction
VaultFsTransaction startTransaction()
Starts a new transaction.- Returns:
- a new transaction.
-
invalidate
void invalidate() throws RepositoryException
Flushes the file cache- Throws:
RepositoryException
- if an error occurs
-
getConfig
VaultFsConfig getConfig()
Returns the vault configuration that is used- Returns:
- the vault configuration.
-
getWorkspaceFilter
WorkspaceFilter getWorkspaceFilter()
Returns the current workspace filter- Returns:
- the workspace filter
-
-