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 /***
13 * <p>
14 * Interface for all service interceptors.
15 * </p>
16 *
17 * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
18 * @version $Revision: 1.3 $ $Date: 2004/10/18 10:13:40 $
19 * @version Revision: 1.0
20 */
21
22 public interface ServiceInterceptor {
23
24 public void invoke(ServiceEntry serviceEntry, ClassLoader classLoader)
25 throws Throwable;
26
27 }