View Javadoc

1   /*
2    * $Id: IContentModel.java,v 1.5 2010/08/10 14:02:30 oeuillot Exp $
3    */
4   package org.rcfaces.core.model;
5   
6   import org.rcfaces.core.internal.contentAccessor.IGeneratedResourceInformation;
7   import org.rcfaces.core.internal.contentAccessor.IGenerationResourceInformation;
8   
9   /**
10   * 
11   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12   * @version $Revision: 1.5 $ $Date: 2010/08/10 14:02:30 $
13   */
14  public interface IContentModel {
15  
16      // String RESPONSE_EXPIRATION_PROPERTY = "org.rfcaces.response.EXPIRATION";
17  
18      void setInformations(IGenerationResourceInformation generationInformation,
19              IGeneratedResourceInformation generatedInformation);
20  
21      Object getWrappedData();
22  
23      String getContentEngineId();
24  
25      void setContentEngineId(String contentEngineId);
26  
27      boolean checkNotModified();
28  }