1 package com.openedit.store;2 3 /**4 * A default implementation of {@link ProductPathFinder} that always puts all5 * product-related resources in a single directory.6 * 7 * @author Eric Galluzzo8 */9 public class DefaultProductPathFinder implements ProductPathFinder10 {11 public String idToPath( String inProductId )12 {13 return inProductId;14 }15 }16