org.mule.module.jboss.config.JbossTSNamespaceHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mule-module-jbossts Show documentation
Show all versions of mule-module-jbossts Show documentation
Provides access to the JBoss Transaction Service for User and Xa transactions.
/*
* $Id: JbossTSNamespaceHandler.java 11249 2008-03-07 14:59:58Z tcarlson $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.module.jboss.config;
import org.mule.config.spring.parsers.collection.ChildMapEntryDefinitionParser;
import org.mule.config.spring.parsers.generic.MuleOrphanDefinitionParser;
import org.mule.module.jboss.transaction.JBossArjunaTransactionManagerFactory;
import org.springframework.beans.factory.xml.NamespaceHandlerSupport;
/**
* Registers Bean Definition Parsers for the "jbossts" namespace.
*/
public class JbossTSNamespaceHandler extends NamespaceHandlerSupport
{
public void init()
{
registerBeanDefinitionParser("transaction-manager", new MuleOrphanDefinitionParser(JBossArjunaTransactionManagerFactory.class, true));
registerBeanDefinitionParser("properties", new ChildMapEntryDefinitionParser("properties","key","value"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy