Package org.hibernate.cache.jbc.access

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


     * Create a new OptimisticTransactionalAccess.
     *
     * @param region The region\ to which this is providing access
     */
    public OptimisticTransactionalAccess(EntityRegionImpl region) {
        super(region, new OptimisticTransactionalAccessDelegate(region, region.getPutFromLoadValidator()));
    }
View Full Code Here


     * @param region The region to which this is providing access
     */
    public OptimisticTransactionalAccess(CollectionRegionImpl region) {
       
        // We use a different delegate than the non-optimistic superclass default
        super(region, new OptimisticTransactionalAccessDelegate(region, region.getPutFromLoadValidator()));
    }
View Full Code Here

TOP

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

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.