1 /* 2 * Copyright (C) The Apache Software Foundation. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the LICENSE.txt file. 7 */ 8 package org.apache.avalon.excalibur.i18n; 9 10 /** 11 * Used to map bundle information to string representation (e.g. URI), 12 * to find the relevant bundle. 13 * 14 * @author <a HREF="mailto:neeme@apache.org">Neeme Praks</a> 15 * @version CVS $Revision: 1.6 $ $Date: 2002/01/24 02:10:27 $ $Author: leif $ 16 */ 17 public interface BundleInfoMapper { 18 19 String ROLE = "org.apache.avalon.excalibur.i18n.BundleInfoMapper"; 20 21 /** 22 * Get the string form of the bundle, based on bundle info. 23 * 24 * @return the string form 25 */ 26 String map(BundleInfo bundleInfo); 27 } 28