Class BpmnRaisableData

    • Constructor Detail

      • BpmnRaisableData

        public BpmnRaisableData​(String displayName,
                                String eventDisplayName,
                                String details)
        Creates a new instance of BpmnRaisableData with the given display name, event display name, and details.
        Parameters:
        displayName - The display name of the raisable, e.g. "loop continuation".
        eventDisplayName - The display name when the event is raised via a ThrowEvent, e.g. "Loop Continuation requested".
        details - Additional details about the raisable, such as a description of the error or escalation.
    • Method Detail

      • details

        public String details()
        Additional details about the raisable, such as a description of the error or escalation. For a "Loop continuation" escalation, this could be the target of the continue statement.

        null means details are desirable, but not available. An empty string means no details are needed.

        Returns:
        The details of the raisable.
      • displayName

        public String displayName()
        The display name of the raisable, e.g. "loop continuation".
        Returns:
        The display name of the raisable.
      • eventDisplayName

        public String eventDisplayName()
        The display name when the event is raised via a ThrowEvent, e.g. "Loop Continuation requested".
        Returns:
        The display name for the event when raised.