Interface Process
public interface Process
A process represents a collection of
Tickets- Since:
- 10.0.120
-
Method Summary
Modifier and TypeMethodDescriptiongetId()Returns the id of this process.getNotes()Returns theIssueNotescontaining all notes associated with the process and issues assigned to the process.Returns the set of ids of tickets assigned to this process as an unmodifiable set.Get the set of tickets assigned to this process as an unmodifiable set.
-
Method Details
-
getId
Long getId()Returns the id of this process.- Returns:
- the id of this process
- Since:
- 10.0.120
-
getTicketIds
Returns the set of ids of tickets assigned to this process as an unmodifiable set.- Returns:
- the set of ids of tickets assigned to this process as an unmodifiable set
- Since:
- 10.0.120
-
getTickets
Get the set of tickets assigned to this process as an unmodifiable set.
Please note: Loading all tickets of a process may be very expensive. If you only need the ids of the tickets please use
getTicketIds- Returns:
- the set of tickets assigned to this process as an unmodifiable set
- Since:
- 10.0.120
-
getNotes
IssueNotes getNotes()Returns theIssueNotescontaining all notes associated with the process and issues assigned to the process.- Returns:
- the
IssueNotescontains all notes associated with the process and issues assigned to the process - Since:
- 10.0.146
-