| com.technoetic.xplanner.file.FileSystem
All known Subclasses: com.technoetic.xplanner.file.FileSystemImpl,
FileSystem | public interface FileSystem (Code) | | |
Method Summary | |
Directory | createDirectory(Session session, int parentDirectoryId, String name) | Directory | createDirectory(Session session, Directory parent, String name) | File | createFile(Directory directory, String name, String contentType, long size, InputStream data) | File | createFile(Session session, int directoryId, String name, String contentType, long size, InputStream data) | void | deleteDirectory(Session session, int directoryId) | void | deleteFile(Session session, int fileId) | Directory | getDirectory(Session session, int directoryId) | Directory | getDirectory(String path) | File | getFile(Session session, int fileId) | Directory | getRootDirectory() |
createDirectory | Directory createDirectory(Session session, int parentDirectoryId, String name) throws HibernateException(Code) | | |
deleteDirectory | void deleteDirectory(Session session, int directoryId) throws HibernateException(Code) | | |
deleteFile | void deleteFile(Session session, int fileId) throws HibernateException(Code) | | |
getDirectory | Directory getDirectory(Session session, int directoryId) throws HibernateException(Code) | | |
getFile | File getFile(Session session, int fileId) throws HibernateException(Code) | | |
getRootDirectory | Directory getRootDirectory() throws HibernateException(Code) | | |
|
|