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) 2010-2011 Pentaho
008// All Rights Reserved.
009*/
010package mondrian.server;
011
012/**
013* Callback to get the content of the repository as an XML string.
014 *
015 * <p>Various implementations might use caching or storage in media other than
016 * a file system.
017 *
018 * @author Julian Hyde
019*/
020public interface RepositoryContentFinder {
021    String getContent();
022
023    void shutdown();
024}
025
026// End RepositoryContentFinder.java