Interface IssueService


public interface IssueService
Service for managing change issues in the 3DEXPERIENCE platform.

Change issues represent problems or concerns that need to be addressed through the change management process. This service provides operations to create, read, update, search, approve, and reject change issues.

Since:
2023-02-16
  • Method Details

    • create

      IssueCreateResult create(com.technia.dsx.common.TenantSession session, IssueCreateInput input)
    • read

      Issue read(com.technia.dsx.common.TenantSession session, String issueId, IssueField... fields)
    • read

      Issue read(com.technia.dsx.common.TenantSession session, String issueId, boolean allFields)
    • 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: