View Javadoc

1   /*
2    * $Id: IContentVersionHandler.java,v 1.3 2008/09/17 16:38:17 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.contentAccessor;
5   
6   import javax.faces.context.FacesContext;
7   
8   import org.rcfaces.core.internal.RcfacesContext;
9   
10  /**
11   * 
12   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
13   * @version $Revision: 1.3 $ $Date: 2008/09/17 16:38:17 $
14   */
15  public interface IContentVersionHandler {
16  
17      String getId();
18  
19      IContentAccessor getVersionedContentAccessor(RcfacesContext rcfacesContext,
20              FacesContext facesContext, IContentAccessor contentAccessor,
21              IGeneratedResourceInformation[] contentInformation);
22  
23      String getVersionTag(RcfacesContext rcfacesContext,
24              FacesContext facesContext, String relativeUrl,
25              IContentAccessor contentAccessor,
26              IGeneratedResourceInformation contentInformation);
27  }