@PublicApi
public interface CustomerRequestIssueQuery
CustomerRequest
The following are examples to construct common queries:
// Query customer request by issue id
CustomerRequestIssueQuery query = customerRequestService.newIssueQueryBuilder().issue(issueId).build();
// Query customer request by issue id without checking permission of the user executing the request
CustomerRequestIssueQuery query = customerRequestService.newIssueQueryBuilder().issue(issueId).overrideSecurity(true).build();
Modifier and Type | Interface and Description |
---|---|
static interface |
CustomerRequestIssueQuery.Builder
Builder to construct
CustomerRequestIssueQuery |
Modifier and Type | Method and Description |
---|---|
long |
issue()
Retrieval of the
CustomerRequest backed by this Issue . |
boolean |
overrideSecurity()
Use this to retrieve a
CustomerRequest
without checking the permission of the user executing this request |
long issue()
CustomerRequest
backed by this Issue
.boolean overrideSecurity()
CustomerRequest
without checking the permission of the user executing this requestCopyright © 2024 Atlassian. All rights reserved.