KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > workflow > util > WorkflowLocalListener


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * 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 Suleiman
13  * @version $Revision: 1.2 $
14  * Date: Apr 6, 2002
15  * Time: 11:48:14 PM
16  */

17 public interface WorkflowLocalListener {
18     //~ Methods ////////////////////////////////////////////////////////////////
19

20     public void stateChanged(WorkflowEntry entry) throws WorkflowException;
21 }
22
Popular Tags