1 package com.instantbank.servicing.control.event; 2 3 import java.io.Serializable; 4 5 /** 6 * This interface determines the required methods for an event of servicing application 7 * 8 * @author Instant-bank (Consuelo Franky) 9 * @created September 2002 10 */ 11 public interface ServicingEvent extends Serializable { 12 /** 13 * Specifiy a logical name that is mapped to the event in in the Universal 14 * Remote Controller. 15 * 16 * @return The eventName value 17 */ 18 public String getEventName(); 19 } 20 21