| InterceptorTEST.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.implementation.interceptor;
import junit.framework.TestCase;
import org.jboss.mx.server.ServerConstants;
import org.jboss.mx.service.ServiceConstants;
/**
*
* @author <a href="mailto:juha@jboss.org">Juha Lindfors</a>.
* @version $Revision: 1.5 $
*
*/
public class InterceptorTEST extends TestCase
implements ServerConstants, ServiceConstants
{
public InterceptorTEST(String s)
{
super(s);
}
}
| InterceptorTEST.java |