001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.dao.orm.hibernate.region;
016    
017    import net.sf.ehcache.hibernate.regions.EhcacheCollectionRegion;
018    
019    import org.hibernate.cache.CacheDataDescription;
020    import org.hibernate.cache.CacheException;
021    import org.hibernate.cache.CollectionRegion;
022    import org.hibernate.cache.access.AccessType;
023    import org.hibernate.cache.access.CollectionRegionAccessStrategy;
024    
025    /**
026     * @author Edward Han
027     */
028    public class CollectionRegionWrapper
029            extends BaseRegionWrapper implements CollectionRegion {
030    
031            public CollectionRegionWrapper(
032                    EhcacheCollectionRegion ehcacheCollectionRegion) {
033    
034                    super(ehcacheCollectionRegion);
035            }
036    
037            public CollectionRegionAccessStrategy buildAccessStrategy(
038                            AccessType accessType)
039                    throws CacheException {
040    
041                    EhcacheCollectionRegion ehcacheCollectionRegion =
042                            getEhcacheCollectionRegion();
043    
044                    return ehcacheCollectionRegion.buildAccessStrategy(accessType);
045            }
046    
047            public CacheDataDescription getCacheDataDescription() {
048                    EhcacheCollectionRegion ehcacheCollectionRegion =
049                            getEhcacheCollectionRegion();
050    
051                    return ehcacheCollectionRegion.getCacheDataDescription();
052            }
053    
054            public void invalidate() {
055                    EhcacheCollectionRegion ehcacheCollectionRegion =
056                            getEhcacheCollectionRegion();
057    
058                    ehcacheCollectionRegion.clear();
059            }
060    
061            public boolean isTransactionAware() {
062                    EhcacheCollectionRegion ehcacheCollectionRegion =
063                            getEhcacheCollectionRegion();
064    
065                    return ehcacheCollectionRegion.isTransactionAware();
066            }
067    
068            protected EhcacheCollectionRegion getEhcacheCollectionRegion() {
069                    return (EhcacheCollectionRegion)getEhcacheDataRegion();
070            }
071    
072    }