Package org.jboss.as.ejb3.component

Source Code of org.jboss.as.ejb3.component.EJBComponentConfiguration

/*
* JBoss, Home of Professional Open Source.
* Copyright (c) 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file 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.as.ejb3.component;

import org.jboss.as.ee.component.AbstractComponentConfiguration;
import org.jboss.as.ee.component.Component;
import org.jboss.as.ee.component.ComponentInterceptorFactory;
import org.jboss.as.ejb3.deployment.EjbJarConfiguration;
import org.jboss.as.ejb3.tx.CMTTxInterceptor;
import org.jboss.ejb3.tx2.spi.TransactionalComponent;
import org.jboss.invocation.Interceptor;
import org.jboss.invocation.InterceptorFactory;
import org.jboss.invocation.InterceptorFactoryContext;
import org.jboss.msc.service.ServiceBuilder;

import javax.ejb.TransactionAttributeType;
import javax.ejb.TransactionManagementType;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

/**
* @author <a href="mailto:cdewolf@redhat.com">Carlo de Wolf</a>
*/
public abstract class EJBComponentConfiguration extends AbstractComponentConfiguration {
    private final TransactionManagementType transactionManagementType;
    private final ConcurrentMap<MethodIntf, ConcurrentMap<String, ConcurrentMap<ArrayKey, TransactionAttributeType>>> txAttrs;

    protected EjbJarConfiguration ejbJarConfiguration;

    /**
     * Construct a new instance.
     *
     * @param description the original component description
     */
    public EJBComponentConfiguration(final EJBComponentDescription description) {
        super(description);

        description.addDependency(EJBUtilities.SERVICE_NAME, ServiceBuilder.DependencyType.REQUIRED);

        // CurrentInvocationContext
        addCurrentInvocationContextInterceptorFactory();

        transactionManagementType = description.getTransactionManagementType();

        // CMTTx
        if (transactionManagementType.equals(TransactionManagementType.CONTAINER)) {
            // slurp some memory
            txAttrs = new ConcurrentHashMap<MethodIntf, ConcurrentMap<String, ConcurrentMap<ArrayKey, TransactionAttributeType>>>();

            addComponentSystemInterceptorFactory(new ComponentInterceptorFactory() {
                @Override
                protected Interceptor create(Component component, InterceptorFactoryContext context) {
                    return new CMTTxInterceptor((TransactionalComponent) component);
                }
            });
        } else {
            txAttrs = null;
        }

    }

    protected void addComponentSystemInterceptorFactory(InterceptorFactory interceptorFactory) {
        super.getComponentSystemInterceptorFactories().add(interceptorFactory);
    }

    protected abstract void addCurrentInvocationContextInterceptorFactory();

    /**
     * @return the ejb-name
     */
    public String getName() {
        return getComponentName();
    }

    TransactionManagementType getTransactionManagementType() {
        return transactionManagementType;
    }

    ConcurrentMap<MethodIntf, ConcurrentMap<String, ConcurrentMap<ArrayKey, TransactionAttributeType>>> getTxAttrs() {
        return txAttrs;
    }

    void setEjbJarConfiguration(EjbJarConfiguration ejbJarConfiguration) {
        this.ejbJarConfiguration = ejbJarConfiguration;
    }

    public EjbJarConfiguration getEjbJarConfiguration() {
        return this.ejbJarConfiguration;
    }
}
TOP

Related Classes of org.jboss.as.ejb3.component.EJBComponentConfiguration

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.