Package org.apache.openejb.core.stateless

Examples of org.apache.openejb.core.stateless.StatelessEjbHomeHandler


    protected static EjbHomeProxyHandler createHomeHandler(final BeanContext beanContext, final InterfaceType interfaceType, final List<Class> interfaces, final Class mainInterface) {
        switch (beanContext.getComponentType()) {
            case STATEFUL:
                return new StatefulEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case STATELESS:
                return new StatelessEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case SINGLETON:
                return new SingletonEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case MANAGED:
                return new ManagedHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case CMP_ENTITY:
View Full Code Here


    protected static EjbHomeProxyHandler createHomeHandler(BeanContext beanContext, InterfaceType interfaceType, List<Class> interfaces, Class mainInterface) {
        switch (beanContext.getComponentType()) {
            case STATEFUL:
                return new StatefulEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case STATELESS:
                return  new StatelessEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case SINGLETON:
                return  new SingletonEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case MANAGED:
                return  new ManagedHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case CMP_ENTITY:
View Full Code Here

    protected static EjbHomeProxyHandler createHomeHandler(BeanContext beanContext, InterfaceType interfaceType, List<Class> interfaces, Class mainInterface) {
        switch (beanContext.getComponentType()) {
            case STATEFUL:
                return new StatefulEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case STATELESS:
                return  new StatelessEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case SINGLETON:
                return  new SingletonEjbHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case MANAGED:
                return  new ManagedHomeHandler(beanContext, interfaceType, interfaces, mainInterface);
            case CMP_ENTITY:
View Full Code Here

TOP

Related Classes of org.apache.openejb.core.stateless.StatelessEjbHomeHandler

Copyright © 2018 www.massapicom. 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.