| SecurityInterceptor.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.mx.interceptor;
/**
* Security interceptor.
*
* @see org.jboss.mx.interceptor.Interceptor
* @see org.jboss.mx.interceptor.LogInterceptor
*
* @author <a href="mailto:juha@jboss.org">Juha Lindfors</a>.
* @version $Revision: 1.5 $
*
*/
public final class SecurityInterceptor
extends AbstractInterceptor
{
// Public --------------------------------------------------------
public SecurityInterceptor() {
super("Security Interceptor");
}
/*
// Interceptor overrides -----------------------------------------
public Object invoke(Invocation invocation) throws InvocationException
{
return getNext().invoke(invocation);
}
*/
}
| SecurityInterceptor.java |