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) 2005-2005 Pentaho 008// All Rights Reserved. 009*/ 010package mondrian.spi; 011 012/** 013 * Abstract layer for locating catalog schema content. 014 * 015 * @author Gang Chen 016 * @since December, 2005 017 */ 018public interface CatalogLocator { 019 020 /** 021 * @return URL complied string representation. 022 */ 023 String locate(String catalogPath); 024 025} 026 027// End CatalogLocator.java