View Javadoc

1   /*
2    * $Id: IContentProxyHandler.java,v 1.1 2009/04/09 09:25:49 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.1 $ $Date: 2009/04/09 09:25:49 $
14   */
15  public interface IContentProxyHandler {
16  
17      String getId();
18  
19      IContentAccessor getProxyedContentAccessor(RcfacesContext rcfacesContext,
20              FacesContext facesContext, IContentAccessor returnContentAccessor,
21              IGeneratedResourceInformation[] contentInformationRef);
22  
23  }