KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > definition > SingletonInterceptor


1 /*
2  * Nanning Aspects
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package com.tirsen.nanning.definition;
8
9 import com.tirsen.nanning.Interceptor;
10
11 /**
12  * This is a marker-interface to indicate that a single interceptor should be used for every
13  * <code>InterceptorDefinition</code> in the system.
14  *
15  * <!-- $Id: SingletonInterceptor.java,v 1.2 2003/05/22 20:18:32 tirsen Exp $ -->
16  *
17  * @author $Author: tirsen $
18  * @version $Revision: 1.2 $
19  *
20  * @deprecated please use the new {@link com.tirsen.nanning.config.AspectSystem} framework instead.
21  * @see com.tirsen.nanning.config.InterceptorAspect.SINGLETON for example.
22  */

23 public interface SingletonInterceptor extends Interceptor {
24 }
25
Popular Tags