1 /***
2 * JFoxSOAF, Service-Oriented Application Framework
3 *
4 * Copyright (C) www.huihoo.org
5 *
6 * Distributable under GNU LGPL For more information, please visit:
7 * http://www.huihoo.org/jfox/jfoxsoaf
8 */
9
10 package org.huihoo.jfox.soaf.container;
11
12 import java.util.Collection;
13
14 /***
15 * <p>
16 * InterceptorManager manages interceptors processing.
17 * It creates the InterceptorChain with the appropriate
18 * inteceptors, in the correct order, and initiates processing.
19 * </p>
20 *
21 * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
22 * @version $Revision: 1.3 $ $Date: 2004/10/28 05:12:04 $
23 * @version Revision: 1.0
24 */
25
26 public interface InterceptorManager {
27
28 public void processInterceptor(Collection interceptorColl,
29 Collection serviceEntryColl)
30 throws Throwable;
31
32 }