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 11 /*12 * @author Hani Suleiman13 * @version $Revision: 1.2 $14 * Date: Apr 6, 200215 * Time: 11:48:14 PM16 */17 public interface WorkflowLocalListener {18 //~ Methods ////////////////////////////////////////////////////////////////19 20 public void stateChanged(WorkflowEntry entry) throws WorkflowException;21 }22