// Check the status of the transaction with the specified pollUrl
// Now you see why you need to save that url
StatusResponse status = paynow.CheckTransactionStatus(pollUrl);
if (status.paid()) {
// Yay! Transaction was paid for
} else {
System.out.println(“Why you no pay?”);
}