Example usage for org.springframework.transaction.support ResourceHolderSupport subclass-usage

List of usage examples for org.springframework.transaction.support ResourceHolderSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.transaction.support ResourceHolderSupport subclass-usage.

Usage

From source file com.turbospaces.spaces.tx.SpaceTransactionHolder.java

/**
 * space transaction modification resource holder. used with spring transactions abstraction layer.
 * 
 * @since 0.1
 */
public class SpaceTransactionHolder extends ResourceHolderSupport {

From source file org.springextensions.neodatis.ODBHolder.java

/**
 * 
 * @author Joerg Bellmann
 * 
 */
public class ODBHolder extends ResourceHolderSupport {

From source file org.springextensions.db4o.ObjectContainerHolder.java

/**
 * db4o ObjectContainer holder support
 *
 * @author Costin Leau
 */
public class ObjectContainerHolder extends ResourceHolderSupport {

From source file org.guzz.web.context.spring.WriteTranSessionHolder.java

/**
 * Session holder, wrapping a Guzz <code>WriteTranSession</code>.
 * GuzzTransactionManager binds instances of this class to the thread,
 * for a given GuzzContext.
 *
 * <p>Note: This is an SPI class, not intended to be used by applications.

From source file org.grails.datastore.mapping.transactions.SessionHolder.java

/**
 * Holds a reference to one or more sessions.
 *
 * @author Graeme Rocher
 * @since 1.0
 */

From source file org.develspot.data.orientdb.transaction.GraphDatabaseHolder.java

public class GraphDatabaseHolder extends ResourceHolderSupport {

    public GraphDatabaseHolder(OGraphDatabase graphDatabase) {
        this.graphDatabase = graphDatabase;
    }

From source file org.mybatis.spring.SqlSessionHolder.java

/**
 * Used to keep current {@code SqlSession} in {@code TransactionSynchronizationManager}.
 * The {@code SqlSessionFactory} that created that {@code SqlSession} is used as a key.
 * {@code ExecutorType} is also kept to be able to check if the user is trying to change it
 * during a TX (that is not allowed) and throw a Exception in that case.
 *

From source file com._4dconcept.springframework.data.marklogic.datasource.SessionHolder.java

/**
 * Session holder, wrapping a XDBC Session.
 * {@link ContentSourceTransactionManager} binds instances of this class
 * to the thread, for a specific ContentSource.
 *
 * <p>Inherits rollback-only support for nested XDBC transactions

From source file org.springframework.amqp.rabbit.connection.RabbitResourceHolder.java

/**
 * Rabbit resource holder, wrapping a RabbitMQ Connection and Channel.
 * RabbitTransactionManager binds instances of this class to the thread, for a
 * given Rabbit ConnectionFactory.
 * 
 * <p>

From source file org.springframework.jms.connection.JmsResourceHolder.java

/**
 * JMS resource holder, wrapping a JMS Connection and a JMS Session.
 * JmsTransactionManager binds instances of this class to the thread,
 * for a given JMS ConnectionFactory.
 *
 * <p>Note: This is an SPI class, not intended to be used by applications.