NotificationEvent

public class NotificationEvent

Sent when various notifications are received from the terminal that might be helpful to the cashier.

Fields

TYPE

public static final String TYPE

Notification event type

Methods

generateTransactionEventResponse

public TransactionEventResponse generateTransactionEventResponse()

Generate transaction event response for the current event.

Return:

empty response when a standard transaction event. Child classes may implement appropriate responses as needed.

getEventId

public String getEventId()

Returns the event ID associated with this event. Useful for matching the event received by the listener to the original status returned when issuing the call, for example, calling com.verifone.commerce.payment.TransactionManager.reprintReceipt(Payment) returns a CommerceEvent containing an event ID, which will match the event ID received by the CommerceListener when the receipt reprint is complete.

getInternalData

public String getInternalData()

Get InternalData - mainly for legacy POS support

getInvoiceId

public String getInvoiceId()

The invoice ID for the transaction as a reference.

getMessage

public String getMessage()

A user-readable message. This message may not be localized, in which case the type field should be used for determining a localized message.

getNotificationType

public NotificationType getNotificationType()

Get Notification type

getSessionId

public String getSessionId()

Get the session ID for the session which triggered this event.

getStatus

public int getStatus()

Get the status for this particular event. A status of 0 means success, any other status is a failure.

getTransaction

public Transaction getTransaction()

The transaction associated with this event.

getType

public String getType()

The type of status. This will generally be SUCCESS for a status of 0, and contain a different type for other errors. For example, in a refund or void, it is possible to receive type TRANSACTION_NOT_FOUND. This may be used for localizing the specific messages as needed