Uses of Class
com.coachconnect.model.Note
Packages that use Note
-
Uses of Note in com.coachconnect.repository
Methods in com.coachconnect.repository that return types with arguments of type NoteModifier and TypeMethodDescriptionNoteRepository.createNote(Note note) Create a new note.Find a note by ID (without creator check - servlet will handle security).NoteRepository.findNoteById(String id, String creatorId) Find a note by ID (must belong to the creator).Find notes by creator with optional type and reference ID filters.NoteRepository.findNotesByCreator(String creatorId) Find all notes created by a specific user (coach).Save a note (alias for createNote).Update a note (simplified interface).NoteRepository.updateNote(String id, String creatorId, Note updatedNote) Update an existing note.Methods in com.coachconnect.repository with parameters of type NoteModifier and TypeMethodDescriptionNoteRepository.createNote(Note note) Create a new note.Save a note (alias for createNote).Update a note (simplified interface).NoteRepository.updateNote(String id, String creatorId, Note updatedNote) Update an existing note.