Interface ISqlJetFileSystemsManager
-
- All Known Implementing Classes:
SqlJetFileSystemsManager
public interface ISqlJetFileSystemsManagerThe list of all registeredISqlJetFileSystemimplementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISqlJetFileSystemfind(java.lang.String name)Locate aISqlJetFileSystemby name.voidregister(ISqlJetFileSystem fs, boolean isDefault)Register aISqlJetFileSystemwith the system.voidunregister(ISqlJetFileSystem fs)Unregister aISqlJetFileSystemso that it is no longer accessible.
-
-
-
Method Detail
-
find
ISqlJetFileSystem find(java.lang.String name)
Locate aISqlJetFileSystemby name. If no name is given, simply return the defaultISqlJetFileSystem.- Parameters:
name-- Returns:
-
register
void register(ISqlJetFileSystem fs, boolean isDefault) throws SqlJetException
Register aISqlJetFileSystemwith the system. It is harmless to register the sameISqlJetFileSystemmultiple times. The newISqlJetFileSystembecomes the default if isDefault is true.- Parameters:
fs-isDefault-- Throws:
SqlJetException
-
unregister
void unregister(ISqlJetFileSystem fs) throws SqlJetException
Unregister aISqlJetFileSystemso that it is no longer accessible.- Parameters:
fs-- Throws:
SqlJetException
-
-