Package nexj.core.meta.integration

Examples of nexj.core.meta.integration.TransactionalChannel


                     m_writer.closeEmptyElement();
                     exportResourceReferences(channel, XMLMetadataExporter.J2EE_PLATFORM_RESOURCE_REF_EXT, nContainer, nContext);

                     if (channel.isTransactional() && channel instanceof TransactionalChannel)
                     {
                        TransactionalChannel txc = (TransactionalChannel)channel;

                        if (txc.getTransactionTimeout() > 0)
                        {
                           m_writer.openElement("globalTransaction");
                           m_writer.writeAttribute("componentTransactionTimeout", txc.getTransactionTimeout());
                           m_writer.closeEmptyElement();
                        }
                     }

                     m_writer.endElement("ejbExtensions");
View Full Code Here

TOP

Related Classes of nexj.core.meta.integration.TransactionalChannel

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.