Class NotificationRegistrationParams
- java.lang.Object
-
- com.vasco.orchestration.client.flows.notification.NotificationRegistrationParams
-
public class NotificationRegistrationParams extends java.lang.Object
ANotificationRegistrationParams
object provides parameters to register for push notifications.
-
-
Constructor Summary
Constructors Constructor Description NotificationRegistrationParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getNotificationIdentifier()
Gets the notification identifier when registering for push notifications.NotificationRegistrationCallback
getNotificationRegistrationCallback()
Gets the configuredNotificationRegistrationCallback
.OrchestrationUser
getOrchestrationUser()
Gets the configured user when registering for push notifications.void
setNotificationIdentifier(java.lang.String notificationIdentifier)
Sets the notification identifier to be used when registering for push notificationsvoid
setNotificationRegistrationCallback(NotificationRegistrationCallback notificationRegistrationCallback)
Sets theNotificationRegistrationCallback
to be notified about notification registration events.void
setOrchestrationUser(OrchestrationUser orchestrationUser)
Sets the user to be used when registering for push notifications
-
-
-
Method Detail
-
getOrchestrationUser
public OrchestrationUser getOrchestrationUser()
Gets the configured user when registering for push notifications.- Returns:
- the configured user
-
setOrchestrationUser
public void setOrchestrationUser(OrchestrationUser orchestrationUser)
Sets the user to be used when registering for push notifications- Parameters:
orchestrationUser
- the user
-
getNotificationIdentifier
public java.lang.String getNotificationIdentifier()
Gets the notification identifier when registering for push notifications.- Returns:
- the configured notification identifier
-
setNotificationIdentifier
public void setNotificationIdentifier(java.lang.String notificationIdentifier)
Sets the notification identifier to be used when registering for push notifications- Parameters:
notificationIdentifier
- the notification identifier
-
getNotificationRegistrationCallback
public NotificationRegistrationCallback getNotificationRegistrationCallback()
Gets the configuredNotificationRegistrationCallback
.- Returns:
- the
NotificationRegistrationCallback
object
-
setNotificationRegistrationCallback
public void setNotificationRegistrationCallback(NotificationRegistrationCallback notificationRegistrationCallback)
Sets theNotificationRegistrationCallback
to be notified about notification registration events.- Parameters:
notificationRegistrationCallback
- aNotificationRegistrationCallback
object
-
-