All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.as.ejb3.component.stateless.StatelessSessionComponent Maven / Gradle / Ivy

There is a newer version: 33.0.2.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2010, 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.stateless;

import java.lang.reflect.Method;
import java.util.Map;

import org.jboss.as.ee.component.BasicComponentInstance;
import org.jboss.as.ejb3.component.allowedmethods.AllowedMethodsInformation;
import org.jboss.as.ejb3.component.pool.PoolConfig;
import org.jboss.as.ejb3.component.pool.PooledComponent;
import org.jboss.as.ejb3.component.session.SessionBeanComponent;
import org.jboss.as.ejb3.pool.Pool;
import org.jboss.as.ejb3.pool.StatelessObjectFactory;
import org.jboss.ejb.client.Affinity;
import org.jboss.invocation.Interceptor;

import static org.jboss.as.ejb3.logging.EjbLogger.ROOT_LOGGER;

/**
 * {@link org.jboss.as.ee.component.Component} responsible for managing EJB3 stateless session beans
 * 

*

* Author : Jaikiran Pai */ public class StatelessSessionComponent extends SessionBeanComponent implements PooledComponent { private final Pool pool; private final String poolName; private final Method timeoutMethod; private final Affinity weakAffinity; /** * Constructs a StatelessEJBComponent for a stateless session bean * * @param slsbComponentCreateService */ public StatelessSessionComponent(final StatelessSessionComponentCreateService slsbComponentCreateService) { super(slsbComponentCreateService); StatelessObjectFactory factory = new StatelessObjectFactory() { @Override public StatelessSessionComponentInstance create() { return (StatelessSessionComponentInstance) createInstance(); } @Override public void destroy(StatelessSessionComponentInstance obj) { obj.destroy(); } }; final PoolConfig poolConfig = slsbComponentCreateService.getPoolConfig(); if (poolConfig == null) { ROOT_LOGGER.debugf("Pooling is disabled for Stateless EJB %s", slsbComponentCreateService.getComponentName()); this.pool = null; this.poolName = null; } else { ROOT_LOGGER.debugf("Using pool config %s to create pool for Stateless EJB %s", poolConfig, slsbComponentCreateService.getComponentName()); this.pool = poolConfig.createPool(factory); this.poolName = poolConfig.getPoolName(); } this.timeoutMethod = slsbComponentCreateService.getTimeoutMethod(); this.weakAffinity = slsbComponentCreateService.getWeakAffinity(); } @Override protected BasicComponentInstance instantiateComponentInstance(Interceptor preDestroyInterceptor, Map methodInterceptors, Map context) { return new StatelessSessionComponentInstance(this, preDestroyInterceptor, methodInterceptors); } @Override public Pool getPool() { return pool; } @Override public String getPoolName() { return poolName; } @Override public Method getTimeoutMethod() { return timeoutMethod; } @Override public void init() { super.init(); if(this.pool!=null){ this.pool.start(); } } @Override public void done() { if(this.pool!=null){ this.pool.stop(); } super.done(); } @Override public AllowedMethodsInformation getAllowedMethodsInformation() { return isBeanManagedTransaction() ? StatelessAllowedMethodsInformation.INSTANCE_BMT : StatelessAllowedMethodsInformation.INSTANCE_CMT; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy