Package org.apache.geronimo.naming.reference

Examples of org.apache.geronimo.naming.reference.UserTransactionReference


            GerResourceEnvRefType gerResourceEnvRef = refMap.get(name);
            refMap.remove(name);
            try {
                String refType = getStringValue(resourceEnvRef.getResourceEnvRefType());
                if (refType.equals("javax.transaction.UserTransaction")) {
                    Reference ref = new UserTransactionReference();
                    getJndiContextMap(componentContext).put(ENV + name, ref);
                } else {
                    AbstractNameQuery containerId = getAdminObjectContainerId(name, gerResourceEnvRef);
                    Reference ref = buildAdminObjectReference(module, containerId, iface);
                    getJndiContextMap(componentContext).put(ENV + name, ref);
View Full Code Here

TOP

Related Classes of org.apache.geronimo.naming.reference.UserTransactionReference

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.