Interface BusinessNotification.CaseReceiverBuilder
- Enclosing interface:
BusinessNotification
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionSends the notification to all users that were involved in the case or business caseSends the notification to the case or business case owners.Sends the notification to all users that have been worked on a task of the case or business caseSends the notification to the case or business case creator.addOwner()Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Details
-
addOwner
@Deprecated(since="12.0.0", forRemoval=true) default BusinessNotification.ReceiverOrSendBuilder addOwner()Deprecated, for removal: This API element is subject to removal in a future version.useaddAllOwners()Sends the notification to the case or business case owner.
If no owner is set on the case this method does not add any receiver. If no other receiver is added the notification will not be sent.
- Returns:
- builder for further composition of the notification
- API:
- This public API is available in Java.
-
addAllOwners
BusinessNotification.ReceiverOrSendBuilder addAllOwners()Sends the notification to the case or business case owners.
If no owners are set on the case this method does not add any receiver. If no other receiver is added the notification will not be sent.
- Returns:
- builder for further composition of the notification
- Since:
- 12.0.0
- API:
- This public API is available in Java.
-
addCreator
BusinessNotification.ReceiverOrSendBuilder addCreator()Sends the notification to the case or business case creator.
If no creator is available on the case this method does not add any receiver. If no other receiver is added the notification will not be sent.
- Returns:
- builder for further composition of the notification
- API:
- This public API is available in Java.
-
addAllInvolved
BusinessNotification.ReceiverOrSendBuilder addAllInvolved()Sends the notification to all users that were involved in the case or business caseIf nobody is involved on the case this method does not add any receiver. If no other receiver is added the notification will not be sent.
- Returns:
- builder for further composition of the notification
- API:
- This public API is available in Java.
-
addAllWorkers
BusinessNotification.ReceiverOrSendBuilder addAllWorkers()Sends the notification to all users that have been worked on a task of the case or business caseIf nobody has worked on the case this method does not add any receiver. If no other receiver is added the notification will not be sent.
- Returns:
- builder for further composition of the notification
- API:
- This public API is available in Java.
-
addAllOwners()