| ServerSessionInterceptor.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.jms.server.container;
import org.jboss.aop.advice.Interceptor;
import org.jboss.aop.joinpoint.Invocation;
import org.jboss.aop.joinpoint.MethodInvocation;
/**
* The server implementation of the session
*
* @author <a href="mailto:adrian@jboss.org>Adrian Brock</a>
* @version $Revision: 1.4 $
*/
public class ServerSessionInterceptor
implements Interceptor
{
// Constants -----------------------------------------------------
// Attributes ----------------------------------------------------
// Static --------------------------------------------------------
public static ServerSessionInterceptor singleton = new ServerSessionInterceptor();
// Constructors --------------------------------------------------
// Public --------------------------------------------------------
// Interceptor implementation ------------------------------------
public String getName()
{
return "ServerProducerInterceptor";
}
public Object invoke(Invocation invocation) throws Throwable
{
MethodInvocation mi = (MethodInvocation) invocation;
String methodName = ((MethodInvocation) invocation).getMethod().getName();
if (methodName.equals("createBrowser"))
return null;
else if (methodName.equals("createConsumer"))
return null;
else if (methodName.equals("createProducer"))
return null;
else if (methodName.equals("closing") || methodName.equals("close"))
return null;
throw new UnsupportedOperationException(mi.getMethod().toString());
}
// Protected ------------------------------------------------------
// Package Private ------------------------------------------------
// Private --------------------------------------------------------
// Inner Classes --------------------------------------------------
}
| ServerSessionInterceptor.java |