View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2012-5-8 下午01:59:24
4    */
5   package gboat2.serviceflow.service;
6   
7   import java.util.List;
8   
9   /**
10   * 
11   * @author lysming
12   * @since jdk1.6
13   * @date 2012-5-8
14   *  
15   */
16  
17  public interface IHandlerRegister {
18  	public List<IEntryActionHandler> getEntryActionHandlers();
19  	
20  	public List<IExitActionHandler> getExitActionHandlers();
21  	
22  }