1 package com.openedit.store; 2 3 /** 4 * An interface that maps a product ID to a full path. 5 * 6 * @author Eric Galluzzo 7 */ 8 public interface ProductPathFinder 9 { 10 /** 11 * Converts the given ID to a relative path, not including any file 12 * extension. 13 * 14 * @param inProductId The product ID 15 * 16 * @return The full path 17 */ 18 String idToPath( String inProductId ); 19 } 20