1 /*2 * Copyright (c) 2002-2003 by OpenSymphony3 * All rights reserved.4 */5 package com.opensymphony.workflow.util;6 7 import com.opensymphony.workflow.WorkflowException;8 import com.opensymphony.workflow.spi.WorkflowEntry;9 10 import java.rmi.Remote ;11 import java.rmi.RemoteException ;12 13 14 /*15 * @author Hani Suleiman16 * @version $Revision: 1.2 $17 * Date: Apr 6, 200218 * Time: 11:48:14 PM19 */20 public interface WorkflowListener extends Remote {21 //~ Methods ////////////////////////////////////////////////////////////////22 23 public void stateChanged(WorkflowEntry entry) throws RemoteException , WorkflowException;24 }25