org.kuali.rice.kns.dao
Interface NoteDao

All Known Implementing Classes:
NoteDaoJpa, NoteDaoOjb, NoteDaoProxy

public interface NoteDao

The data access interface for NOte objects.

Author:
Kuali Rice Team (rice.collab@kuali.org)

Method Summary
 void deleteNote(Note note)
          Deletes a note from the DB.
 List<Note> findByremoteObjectId(String id)
          Retrieves a list of notes (by class type) associated with a given object.
 Note getNoteByNoteId(Long noteId)
          Retrieve note by a given noteIdentifier
 void save(Note note)
          Saves a note to the DB.
 

Method Detail

save

void save(Note note)
Saves a note to the DB.

Parameters:
line -

deleteNote

void deleteNote(Note note)
Deletes a note from the DB.

Parameters:
line -

findByremoteObjectId

List<Note> findByremoteObjectId(String id)
Retrieves a list of notes (by class type) associated with a given object.

Parameters:
clazz -
id -
Returns:

getNoteByNoteId

Note getNoteByNoteId(Long noteId)
Retrieve note by a given noteIdentifier

Parameters:
noteId -
Returns:


Copyright © 2004-2011 The Kuali Foundation. All Rights Reserved.