Package com.i2group.disco.audit
Interface INoteChangeset
public interface INoteChangeset
A collection of changes to the notes on an i2 Analyze record.
- Since:
- 10.0
-
Method Summary
Modifier and TypeMethodDescriptionGets theINoteAddition
s for a particular record.GetsString
s that contain the identifiers of notes that were deleted from a particular record.Gets theINoteModification
s for a particular record.
-
Method Details
-
getAddedNotes
Collection<INoteAddition> getAddedNotes()Gets theINoteAddition
s for a particular record.- Returns:
- See above.
-
getModifiedNotes
Collection<INoteModification> getModifiedNotes()Gets theINoteModification
s for a particular record.- Returns:
- See above.
-
getDeletedNotes
Collection<String> getDeletedNotes()GetsString
s that contain the identifiers of notes that were deleted from a particular record.- Returns:
- See above.
-