KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > store > DefaultProductPathFinder


1 package com.openedit.store;
2
3 /**
4  * A default implementation of {@link ProductPathFinder} that always puts all
5  * product-related resources in a single directory.
6  *
7  * @author Eric Galluzzo
8  */

9 public class DefaultProductPathFinder implements ProductPathFinder
10 {
11     public String JavaDoc idToPath( String JavaDoc inProductId )
12     {
13         return inProductId;
14     }
15 }
16
Popular Tags