Interface Process
-
public interface Process
A process represents a collection ofTicket
s- Since:
- 10.0.120
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Long
getId()
IssueNotes
getNotes()
java.util.Set<java.lang.Long>
getTicketIds()
java.util.Set<Ticket>
getTickets()
Get the set of tickets assigned to this process as an unmodifiable set.
-
-
-
Method Detail
-
getId
java.lang.Long getId()
- Returns:
- the id of this process
- Since:
- 10.0.120
-
getTicketIds
java.util.Set<java.lang.Long> getTicketIds()
- Returns:
- the set of ids of tickets assigned to this process as an unmodifiable set
- Since:
- 10.0.120
-
getTickets
java.util.Set<Ticket> 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:
- the
IssueNotes
contains all notes associated with the process and issues assigned to the process - Since:
- 10.0.146
-
-