View Javadoc

1   /*
2    * $Id: IContentStorageRepository.java,v 1.2 2006/11/13 11:01:15 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.contentStorage;
5   
6   import org.rcfaces.core.model.IContentModel;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.2 $ $Date: 2006/11/13 11:01:15 $
12   */
13  public interface IContentStorageRepository {
14      String save(IResolvedContent content, IContentModel contentModel);
15  
16      void saveWrapped(String key, IResolvedContent wrappedContent);
17  
18      IResolvedContent load(String key);
19  }