Interface UserNotificationOperationBuilder.Desktop
-
- All Superinterfaces:
UserNotificationOperationBuilder.WithTitle<UserNotificationOperationBuilder.Desktop>
- Enclosing interface:
- UserNotificationOperationBuilder
public static interface UserNotificationOperationBuilder.Desktop extends UserNotificationOperationBuilder.WithTitle<UserNotificationOperationBuilder.Desktop>
This interface represents a specific builder to display a native desktop notification to a user.- Since:
- 12.13
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
UserNotificationOperationBuilder.Desktop.Text
This interface represents a specific builder to display a desktop notification with a plain text message to a user.static interface
UserNotificationOperationBuilder.Desktop.WithMessage<T>
This interface represents a specific builder to display a native desktop notification with a message to a user.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserNotificationOperationBuilder.Desktop.Text
text(java.lang.String text)
This method returns a UserNotificationOperationBuilder.Desktop.Text instance which is able to display a desktop notification with a text message to the user.-
Methods inherited from interface com.novomind.ecom.api.iagent.operation.notification.UserNotificationOperationBuilder.WithTitle
title
-
-
-
-
Method Detail
-
text
UserNotificationOperationBuilder.Desktop.Text text(java.lang.String text) throws ValidationException
This method returns a UserNotificationOperationBuilder.Desktop.Text instance which is able to display a desktop notification with a text message to the user.- Parameters:
text
- the text message of the desktop notification- Returns:
- the UserNotificationOperationBuilder.Desktop.Text
- Throws:
ValidationException
- if the text message is not valid- Since:
- 12.13
-
-