1 package com.instantbank.servicing.control.event; 2 3 import java.io.Serializable; 4 5 /** 6 * This is the base class for all events used by the application. Currently 7 * this class only implements Serializable to ensure that all events may be 8 * sent the the EJB container via RMI-IIOP. 9 * 10 * @author Instant-bank (Consuelo Franky) 11 * @created September 2002 12 */ 13 public class ServicingEventSupport 14 implements Serializable, ServicingEvent { 15 16 /** 17 * Gets the eventName attribute of the ServicingEventSupport object 18 * 19 * @return The eventName value 20 */ 21 public String getEventName() { 22 return null; 23 } 24 25 } 26 27