View Javadoc

1   /*
2    * Created on 7 sept. 2004
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package net.sf.pmr.keopsframework.data;
8   
9   import java.util.Collection;
10  
11  /***
12   * @author APROST
13   *
14   * TODO To change the template for this generated type comment go to
15   * Window - Preferences - Java - Code Style - Code Templates
16   */
17  public interface DomainListMapper  {
18  
19      /***
20       * Load a list for a given Object
21       *
22       * @param key
23       * @param objectToLoad
24       * @return TODO
25       */
26      Collection findCollectionForObject(final Object key);
27  
28  }