Package org.jboss.ejb3.tx2.impl

Source Code of org.jboss.ejb3.tx2.impl.BMTInterceptor

/*
* JBoss, Home of Professional Open Source
* Copyright (c) 2010, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.ejb3.tx2.impl;

import org.jboss.ejb3.tx2.spi.TransactionalComponent;
import org.jboss.logging.Logger;

import javax.ejb.ApplicationException;
import javax.ejb.EJBException;
import javax.interceptor.AroundInvoke;
import javax.interceptor.InvocationContext;
import javax.transaction.Transaction;
import javax.transaction.TransactionManager;

/**
* Suspend an incoming tx.
*
* @author <a href="mailto:bill@jboss.org">Bill Burke</a>
* @author <a href="mailto:osh@sparre.dk">Ole Husgaard</a>
* @author <a href="cdewolf@redhat.com">Carlo de Wolf</a>
*/
public abstract class BMTInterceptor
{
   private static final Logger log = Logger.getLogger(BMTInterceptor.class);

   protected abstract TransactionalComponent getTransactionalComponent();

   protected abstract Object handleInvocation(InvocationContext invocation) throws Exception;

   @AroundInvoke
   public Object invoke(InvocationContext invocation) throws Exception
   {
      TransactionManager tm = this.getTransactionManager();
      Transaction oldTx = tm.suspend();
      try
      {
         return handleInvocation(invocation);
      }
      finally
      {
         if (oldTx != null)
         {
            tm.resume(oldTx);
         }
      }
   }

   protected abstract TransactionManager getTransactionManager();

   /**
    * Checks if the passed exception is an application exception. If yes, then throws back the
    * exception as-is. Else, wraps the exception in a {@link EJBException} and throws the EJBException
    *
    * @param ex The exception to handle
    * @throws Exception Either the passed exception or an EJBException
    */
   protected void handleException(Exception ex) throws Exception
   {
      if (ex == null)
      {
         return;
      }
      ApplicationException ae = this.getTransactionalComponent().getApplicationException(ex.getClass());
      // it's an application exception, so just throw it back as-is
      if (ae != null)
      {
         throw ex;
      }
      if (ex instanceof EJBException)
      {
         throw (EJBException) ex;
      }
      else
      {
         throw new EJBException(ex);
      }
   }
}
TOP

Related Classes of org.jboss.ejb3.tx2.impl.BMTInterceptor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.