Interface IssueNote
-
- All Superinterfaces:
UserProvider
public interface IssueNote extends UserProvider
Represents a text note that has been applied to anIssue
by anUser
AnIssueNote
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 thisIssueNote
.- Since:
- 10.0.146
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getDateCreated()
java.lang.Long
getIssueId()
java.lang.String
getText()
-
Methods inherited from interface com.novomind.ecom.api.iagent.provider.UserProvider
getUser
-
-
-
-
Method Detail
-
getIssueId
java.lang.Long getIssueId()
- Returns:
- the id of the
Issue
associated with this IssueNote. - Since:
- 10.0.146
-
getText
java.lang.String getText()
- Returns:
- the text of the note as String
- Since:
- 10.0.146
-
getDateCreated
java.util.Date getDateCreated()
- Returns:
- the creation date of the note
- Since:
- 10.0.146
-
-