Interface CaseOwners


public interface CaseOwners
A case can have multiple case owners. The intend of the owner is only for descriptive purpose and has no influence on the behavior of the Workflow Engine. This may can be used for example in Workflow UIs to search and filter in case lists.
Since:
12.0.0
API:
This is a public API.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Adds the owner to the list of case owner of the case.
    all()
    Returns all case owners of the case.
    void
    Removes the owner from the list of case owner of the case.
  • Method Details

    • all

      List<CaseOwner> all()
      Returns all case owners of the case.
      Returns:
      case owners
      API:
      This public API is available in Java.
    • add

      void add(ISecurityMember owner)
      Adds the owner to the list of case owner of the case. Note: This will make the case persistent if it's not already persistent.
      Parameters:
      owner - case owner
      API:
      This public API is available in Java.
    • remove

      void remove(ISecurityMember owner)
      Removes the owner from the list of case owner of the case.
      Parameters:
      owner - case owner
      API:
      This public API is available in Java.