Package org.hibernate.cache.jbc.access

Examples of org.hibernate.cache.jbc.access.TransactionalAccessDelegate


     * delegate to a class that encapsulates it
     */
    private final TransactionalAccessDelegate delegate;

    public TransactionalAccess(EntityRegionImpl region) {
        this(region, new TransactionalAccessDelegate(region, region.getPutFromLoadValidator()));
    }
View Full Code Here


     * Create a new TransactionalAccess.
     *
     * @param region the region to which this provides access
     */
    public TransactionalAccess(CollectionRegionImpl region) {
        this(region, new TransactionalAccessDelegate(region, region.getPutFromLoadValidator()));
    }
View Full Code Here

TOP

Related Classes of org.hibernate.cache.jbc.access.TransactionalAccessDelegate

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.