Interface NoteService

All Known Implementing Classes:
NoteServiceImpl

public interface NoteService
A service which handles data access for notes and attachments.
Author:
Kuali Rice Team (rice.collab@kuali.org)
See Also:
  • Method Details

    • getNoteByNoteId

      Note getNoteByNoteId(String noteId)
    • getNotesByDocumentId

      List<Note> getNotesByDocumentId(String documentId)
    • saveNote

      Note saveNote(Note note)
    • deleteNote

      void deleteNote(Note note)
    • deleteAttachment

      void deleteAttachment(Attachment attachment)
    • findAttachmentFile

      byte[] findAttachmentFile(Attachment attachment)
    • findAttachment

      Attachment findAttachment(String attachmentId)