| com.mvnforum.db.AttachmentDAO
All known Subclasses: com.mvnforum.db.jdbc.AttachmentDAOImplJDBC,
AttachmentDAO | public interface AttachmentDAO (Code) | | |
Method Summary | |
public void | create(int postID, int memberID, String attachFilename, int attachFileSize, String attachMimeType, String attachDesc, String attachCreationIP, Timestamp attachCreationDate, Timestamp attachModifiedDate, int attachDownloadCount, int attachOption, int attachStatus) | public int | createAttachment(int postID, int memberID, String attachFilename, int attachFileSize, String attachMimeType, String attachDesc, String attachCreationIP, Timestamp attachCreationDate, Timestamp attachModifiedDate, int attachDownloadCount, int attachOption, int attachStatus) | public void | delete(int attachID) | public void | delete_inPost(int postID) | public AttachmentBean | getAttachment(int attachID) | public Collection | getAttachments() | public Collection | getAttachments_fromIDRange(int fromID, int toID) | public Collection | getAttachments_inForum(int forumID) | public Collection | getAttachments_inPost(int postID) | public Collection | getAttachments_inThread(int threadID) | public Collection | getAttachments_withSortSupport_limit(int offset, int rowsToReturn, int category, int forum) | public int | getMaxAttachmentID() | public int | getNumberOfAttachments(int category, int forum) | public int | getNumberOfAttachments_inPost(int postID) | public int | getNumberOfAttachments_inThread(int threadID) | public void | increaseDownloadCount(int attachID) | public void | updateAttachDesc(int attachID, String newDesc) | public void | updateAttachOption(int attachID, int attachOption) |
create | public void create(int postID, int memberID, String attachFilename, int attachFileSize, String attachMimeType, String attachDesc, String attachCreationIP, Timestamp attachCreationDate, Timestamp attachModifiedDate, int attachDownloadCount, int attachOption, int attachStatus) throws CreateException, DatabaseException, ForeignKeyNotFoundException(Code) | | |
createAttachment | public int createAttachment(int postID, int memberID, String attachFilename, int attachFileSize, String attachMimeType, String attachDesc, String attachCreationIP, Timestamp attachCreationDate, Timestamp attachModifiedDate, int attachDownloadCount, int attachOption, int attachStatus) throws CreateException, DatabaseException, ForeignKeyNotFoundException, ObjectNotFoundException(Code) | | |
getNumberOfAttachments_inThread | public int getNumberOfAttachments_inThread(int threadID) throws DatabaseException(Code) | | |
|
|