Interface IssueNote
- All Superinterfaces:
UserProvider
Represents a text note that has been applied to
an
Issue by an User
An IssueNote always represents a snapshot, that means
the current state of the note. Any changes applied to the note by
other threads or processes will not change this IssueNote.- Since:
- 10.0.146
-
Method Summary
Modifier and TypeMethodDescriptionReturns the set of all attachments associated with thisIssueNote.Returns the creation date of the note.getHtml()The method returns the note content as html.Returns the id of theIssueassociated with this IssueNote.getText()The method returns the note content as plain text.Methods inherited from interface com.novomind.ecom.api.iagent.provider.UserProvider
getUser
-
Method Details
-
getIssueId
Long getIssueId()Returns the id of theIssueassociated with this IssueNote.- Returns:
- the id of the
Issueassociated with this IssueNote. - Since:
- 10.0.146
-
getText
String getText()The method returns the note content as plain text.- Returns:
- the text of the note as plain text String
- Since:
- 10.0.146
-
getHtml
String getHtml()The method returns the note content as html. If the note has been created as plain text then a html representation of the plain text content is returned.- Returns:
- the text of the note as formatted html String
- Since:
- 13.3
-
getDateCreated
Date getDateCreated()Returns the creation date of the note.- Returns:
- the creation date of the note
- Since:
- 10.0.146
-
getAttachments
Set<NoteAttachmentDataSource> getAttachments()Returns the set of all attachments associated with thisIssueNote.- Returns:
- a Set of all attachments associated with this
IssueNote - Since:
- 13.3
-