This class provides methods for handling notifications from checkout. To handle notifications, extend the BaseNotificationDispatcher class with your business-specific logic. Then, in a Servlet that's handling the POST form checkout, pass in a new instance of your child class to NotificationHandler.handleNotification(): public class MyServlet extends HttpServlet { public void doPost(HttpServletRequest request, HttpServletResponse response) { apiContext.handleNotification( new MyNotificationDispatcher(request, response)); } }
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.