Modifier and Type | Method and Description |
---|---|
PagedResponse<ServiceDesk> |
ServiceDeskService.getServiceDesks(com.atlassian.jira.user.ApplicationUser user,
boolean includeArchived,
PagedRequest pagedRequest)
Returns a list of service projects a user can view, with an option to include archived service projects.
|
default PagedResponse<ServiceDesk> |
ServiceDeskService.getServiceDesks(com.atlassian.jira.user.ApplicationUser user,
PagedRequest pagedRequest)
Returns a list of service projects a user can view.
|
Modifier and Type | Method and Description |
---|---|
PagedResponse<Approval> |
ApprovalService.getApprovals(com.atlassian.jira.user.ApplicationUser user,
ApprovalQuery approvalQuery)
Retrieve a page of
Approval of a particular ApprovalQuery |
Modifier and Type | Method and Description |
---|---|
PagedResponse<ServiceDeskComment> |
ServiceDeskCommentService.getCommentsOfRequest(com.atlassian.jira.user.ApplicationUser user,
ServiceDeskCommentQuery commentQuery)
Retrieve a page of
ServiceDeskComment of a particular CustomerRequest |
Modifier and Type | Method and Description |
---|---|
PagedResponse<CustomerOrganization> |
OrganizationService.getOrganizations(com.atlassian.jira.user.ApplicationUser user,
OrganizationsQuery requestQuery)
Returns a list of organizations in the Jira instance based on query parameters.
|
PagedResponse<com.atlassian.jira.user.ApplicationUser> |
OrganizationService.getUsersInOrganization(com.atlassian.jira.user.ApplicationUser user,
UsersInOrganizationQuery query)
Gets all the applicationUsers in a given organization.
|
Modifier and Type | Method and Description |
---|---|
PagedResponse<Portal> |
PortalService.getPortals(com.atlassian.jira.user.ApplicationUser user,
PagedRequest pagedRequest)
Return a
PagedResponse of all of the portals |
PagedResponse<Portal> |
PortalManager.getPortals(PagedRequest pagedRequest)
Return a
PagedResponse of all of the portals |
Modifier and Type | Method and Description |
---|---|
PagedResponse<Queue> |
QueueService.getQueues(com.atlassian.jira.user.ApplicationUser user,
QueueQuery queueQuery)
Get a page of
Queue that satisfies the provided QueueQuery . |
PagedResponse<com.atlassian.jira.issue.Issue> |
QueueService.getRequestsByQueue(com.atlassian.jira.user.ApplicationUser user,
QueueRequestQuery query)
Get a page of
Issue belonging to the specified Queue |
Modifier and Type | Method and Description |
---|---|
PagedResponse<CustomerRequest> |
ServiceDeskCustomerRequestService.getCustomerRequests(com.atlassian.jira.user.ApplicationUser user,
CustomerRequestQuery customerRequestQuery)
Retrieve a page of
CustomerRequest that satisfies the query parameters |
PagedResponse<CustomerRequest.CustomerRequestStatus> |
ServiceDeskCustomerRequestService.getCustomerRequestStatus(com.atlassian.jira.user.ApplicationUser user,
CustomerRequestStatusQuery query)
Retrieve a page of
CustomerRequest.CustomerRequestStatus of a CustomerRequest by chronological order in which the status transition taken place |
Modifier and Type | Method and Description |
---|---|
PagedResponse<com.atlassian.jira.user.ApplicationUser> |
RequestParticipantService.addRequestParticipants(com.atlassian.jira.user.ApplicationUser user,
RequestParticipantUpdateParameters requestParticipantUpdateParameters)
Add a list of
ApplicationUser as participant to a given CustomerRequest . |
PagedResponse<com.atlassian.jira.user.ApplicationUser> |
RequestParticipantService.getRequestParticipants(com.atlassian.jira.user.ApplicationUser user,
RequestParticipantQuery requestParticipantQuery)
Get a page of
ApplicationUser who satisfy the query parameters |
PagedResponse<com.atlassian.jira.user.ApplicationUser> |
RequestParticipantService.removeRequestParticipants(com.atlassian.jira.user.ApplicationUser user,
RequestParticipantUpdateParameters requestParticipantUpdateParameters)
Remove a list
ApplicationUser as participant from a given CustomerRequest . |
Modifier and Type | Method and Description |
---|---|
PagedResponse<CustomerTransition> |
CustomerTransitionService.getCustomerTransitions(com.atlassian.jira.user.ApplicationUser user,
CustomerTransitionQuery customerTransitionQuery)
Retrieves a list of available
CustomerTransition |
Modifier and Type | Method and Description |
---|---|
PagedResponse<RequestType> |
RequestTypeService.getRequestTypes(com.atlassian.jira.user.ApplicationUser user,
RequestTypeQuery requestTypeQuery)
Retrieve a list of
RequestType that satisfy the query parameters. |
Modifier and Type | Method and Description |
---|---|
PagedResponse<SlaInformation> |
SlaInformationService.getInfo(com.atlassian.jira.user.ApplicationUser user,
SlaInformationQuery query)
This will return information about an issue's SLAs based on the query parameters
|
Modifier and Type | Class and Description |
---|---|
class |
PagedResponseImpl<T>
A wrapper around a list of content.
|
Modifier and Type | Method and Description |
---|---|
static <T> PagedResponse<T> |
PagedResponseImpl.filteredPageResponse(LimitedPagedRequest limitedPagedRequest,
List<T> items,
com.google.common.base.Predicate<? super T> predicate)
Reduces a list of items for a limited request by the predicate provided.
|
<M> PagedResponse<M> |
PagedResponseImpl.map(com.google.common.base.Function<T,M> mapper) |
<M> PagedResponse<M> |
PagedResponse.map(com.google.common.base.Function<T,M> mapper)
Allows you to map a paged response of T into M
|
static <T> PagedResponse<T> |
PagedResponseImpl.sortAndToPagedResponse(LimitedPagedRequest limitedPagedRequest,
List<T> items,
Comparator<T> comparator)
Use the provided
Comparator to sort and reduces a list of items to the system enforced limited page size. |
static <T> PagedResponse<T> |
PagedResponseImpl.toPagedResponse(LimitedPagedRequest limitedPagedRequest,
List<T> items)
Reduces a list of items to the system enforced limited page size.
|
Modifier and Type | Method and Description |
---|---|
static <F,T> PagedResponseImpl<T> |
PagedResponseImpl.transform(PagedResponse<F> input,
com.google.common.base.Function<F,T> mapper)
Converts a given PageResponse contains items of type F into an equivalent PageResponse with items of type T,
transformed by the given mapper.
|
Copyright © 2024 Atlassian. All rights reserved.