Package com.atomikos.datasource.xa.jms

Examples of com.atomikos.datasource.xa.jms.JmsTransactionalResource


            "Please make sure the spelling in your setup is correct, and check your JMS driver vendor's documentation." );
      xaConnectionFactory = (XAConnectionFactory) driver;
      PropertyUtils.setProperties(xaConnectionFactory, xaProperties );
    }
     
    JmsTransactionalResource tr = new JmsTransactionalResource(getUniqueResourceName() , xaConnectionFactory);
    com.atomikos.datasource.pool.ConnectionFactory cf = new com.atomikos.jms.AtomikosJmsXAConnectionFactory(xaConnectionFactory, tr, this);
    Configuration.addResource ( tr );
    return cf;
  }
View Full Code Here


            "Please make sure the spelling in your setup is correct, and check your JMS driver vendor's documentation." );
      xaConnectionFactory = (XAConnectionFactory) driver;
      PropertyUtils.setProperties(xaConnectionFactory, xaProperties );
    }
     
    JmsTransactionalResource tr = new JmsTransactionalResource(getUniqueResourceName() , xaConnectionFactory);
    com.atomikos.datasource.pool.ConnectionFactory cf = new com.atomikos.jms.AtomikosJmsXAConnectionFactory(xaConnectionFactory, tr, this);
    Configuration.addResource ( tr );
    return cf;
  }
View Full Code Here

    public JtaTopicConnectionFactory ( String resourceName ,
            XATopicConnectionFactory factory )
    {
        factory_ = factory;
        res_ = new JmsTransactionalResource ( resourceName, factory );

        addToMap ( res_.getName (), this );
    }
View Full Code Here

    public JtaTopicConnectionFactory ( String resourceName ,
            XATopicConnectionFactory tFactory , XidFactory xFactory )
    {
        factory_ = tFactory;
        res_ = new JmsTransactionalResource ( resourceName, tFactory, xFactory );
        addToMap ( res_.getName (), this );
    }
View Full Code Here

    public JtaQueueConnectionFactory ( String resourceName ,
            XAQueueConnectionFactory factory )
    {
        factory_ = factory;
        res_ = new JmsTransactionalResource ( resourceName, factory );

        addToMap ( res_.getName (), this );
    }
View Full Code Here

    public JtaQueueConnectionFactory ( String resourceName ,
            XAQueueConnectionFactory qFactory , XidFactory xFactory )
    {
        factory_ = qFactory;
        res_ = new JmsTransactionalResource ( resourceName, qFactory, xFactory );
        addToMap ( res_.getName (), this );
    }
View Full Code Here

            "Please make sure the spelling in your setup is correct, and check your JMS driver vendor's documentation." );
      xaConnectionFactory = (XAConnectionFactory) driver;
      PropertyUtils.setProperties(xaConnectionFactory, xaProperties );
    }
     
    JmsTransactionalResource tr = new JmsTransactionalResource(getUniqueResourceName() , xaConnectionFactory);
    com.atomikos.datasource.pool.ConnectionFactory cf = new com.atomikos.jms.AtomikosJmsXAConnectionFactory(xaConnectionFactory, tr, this);
    Configuration.addResource ( tr );
    return cf;
  }
View Full Code Here

    public JtaTopicConnectionFactory ( String resourceName ,
            XATopicConnectionFactory factory )
    {
        factory_ = factory;
        res_ = new JmsTransactionalResource ( resourceName, factory );

        addToMap ( res_.getName (), this );
    }
View Full Code Here

    public JtaTopicConnectionFactory ( String resourceName ,
            XATopicConnectionFactory tFactory , XidFactory xFactory )
    {
        factory_ = tFactory;
        res_ = new JmsTransactionalResource ( resourceName, tFactory, xFactory );
        addToMap ( res_.getName (), this );
    }
View Full Code Here

    public JtaQueueConnectionFactory ( String resourceName ,
            XAQueueConnectionFactory factory )
    {
        factory_ = factory;
        res_ = new JmsTransactionalResource ( resourceName, factory );

        addToMap ( res_.getName (), this );
    }
View Full Code Here

TOP

Related Classes of com.atomikos.datasource.xa.jms.JmsTransactionalResource

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.