001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.kernel.dao.orm;
016    
017    import java.io.Serializable;
018    
019    /**
020     * @author Brian Wing Shun Chan
021     */
022    public class EntityCacheUtil {
023    
024            public static void clearCache() {
025                    getEntityCache().clearCache();
026            }
027    
028            public static void clearCache(String className) {
029                    getEntityCache().clearCache(className);
030            }
031    
032            public static void clearLocalCache() {
033                    getEntityCache().clearLocalCache();
034            }
035    
036            public static EntityCache getEntityCache() {
037                    return _finderCache;
038            }
039    
040            public static Object getResult(
041                    boolean entityCacheEnabled, Class<?> classObj,
042                    Serializable primaryKeyObj, SessionFactory sessionFactory) {
043    
044                    return getEntityCache().getResult(
045                            entityCacheEnabled, classObj, primaryKeyObj, sessionFactory);
046            }
047    
048            public static void invalidate() {
049                    getEntityCache().invalidate();
050            }
051    
052            public static Object loadResult(
053                    boolean entityCacheEnabled, Class<?> classObj,
054                    Serializable primaryKeyObj, SessionFactory sessionFactory) {
055    
056                    return getEntityCache().loadResult(
057                            entityCacheEnabled, classObj, primaryKeyObj, sessionFactory);
058            }
059    
060            public static void putResult(
061                    boolean entityCacheEnabled, Class<?> classObj,
062                    Serializable primaryKeyObj, Object result) {
063    
064                    getEntityCache().putResult(
065                            entityCacheEnabled, classObj, primaryKeyObj, result);
066            }
067    
068            public static void removeResult(
069                    boolean entityCacheEnabled, Class<?> classObj,
070                    Serializable primaryKeyObj) {
071    
072                    getEntityCache().removeResult(
073                            entityCacheEnabled, classObj, primaryKeyObj);
074            }
075    
076            public void setEntityCache(EntityCache finderCache) {
077                    _finderCache = finderCache;
078            }
079    
080            private static EntityCache _finderCache;
081    
082    }