001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2004-2005 Julian Hyde
008// Copyright (C) 2005-2009 Pentaho and others
009// All Rights Reserved.
010*/
011package mondrian.rolap.cache;
012
013/**
014 * A <code>CachePool</code> manages the objects in a collection of
015 * caches.
016 *
017 * @author av
018 */
019public class CachePool {
020
021    /** The singleton. */
022    private static CachePool instance = new CachePool();
023
024    /** Returns the singleton. */
025    public static CachePool instance() {
026        return instance;
027    }
028
029    private CachePool() {
030    }
031}
032
033// End CachePool.java