| NullInterceptor.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.mx.interceptor;
/** A noop subclass of the AbstractInterceptor for backward compability
* with 3.2.3-3.2.0 configurations. This is used as the last interceptor
* in custom operation stacks so that the user supplied interceptors do
* not have to deal with the fact that there is no longer a dispatch
* interceptor.
*
* @author Scott.Stark@jboss.org
* @version $Revision: 1.2.6.1 $
*/
public class NullInterceptor extends AbstractInterceptor
{
}
| NullInterceptor.java |