Interface IssueService
public interface IssueService
Document me
- Since:
- 2023-02-16
-
Method Summary
Modifier and TypeMethodDescriptionapprove
(com.technia.dsx.common.TenantSession session, String issueId, String cestamp, String comment) create
(com.technia.dsx.common.TenantSession session, IssueCreateInput input) read
(com.technia.dsx.common.TenantSession session, String issueId, IssueField... fields) reject
(com.technia.dsx.common.TenantSession session, String issueId, String cestamp, String comment) search
(com.technia.dsx.common.TenantSession session, String searchString, Integer maxResult, Integer skip) Gets a list of Issue.update
(com.technia.dsx.common.TenantSession session, String issueId, IssueUpdateInput issueData)
-
Method Details
-
create
-
read
-
read
-
update
Issue update(com.technia.dsx.common.TenantSession session, String issueId, IssueUpdateInput issueData) -
approve
IssueBasics approve(com.technia.dsx.common.TenantSession session, String issueId, String cestamp, String comment) -
reject
IssueBasics reject(com.technia.dsx.common.TenantSession session, String issueId, String cestamp, String comment) -
search
IssueSearchResult search(com.technia.dsx.common.TenantSession session, String searchString, Integer maxResult, Integer skip) Gets a list of Issue. By default, returns a total of up to 50 items, can be optionally increased upto 1000 items using $top query parameter.Recommendation, Use $searchStr query parameter with a minimum of two characters for better performance.
- Parameters:
session
-searchString
-maxResult
-skip
-- Returns:
-