1 /* 2 // $Id: //open/mondrian/src/main/mondrian/spi/CatalogLocator.java#2 $ 3 // This software is subject to the terms of the Common Public License 4 // Agreement, available at the following URL: 5 // http://www.opensource.org/licenses/cpl.html. 6 // Copyright (C) 2005-2005 Julian Hyde 7 // All Rights Reserved. 8 // You must accept the terms of that agreement to use this software. 9 */ 10 package mondrian.spi; 11 12 /** 13 * Abstract layer for locating catalog schema content. 14 * 15 * @author Gang Chen 16 * @since December, 2005 17 * @version $Id: //open/mondrian/src/main/mondrian/spi/CatalogLocator.java#2 $ 18 */ 19 public interface CatalogLocator { 20 21 /** 22 * @return URL complied string representation. 23 */ 24 String locate(String catalogPath); 25 26 } 27 28 // End CatalogLocator.java 29