View Javadoc

1   /*
2    * $Id: ICompositeContentAccessorHandler.java,v 1.1 2008/03/17 14:30:48 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.contentAccessor;
5   
6   /**
7    * 
8    * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9    * @version $Revision: 1.1 $ $Date: 2008/03/17 14:30:48 $
10   */
11  public interface ICompositeContentAccessorHandler extends
12          IContentAccessorHandler {
13  
14      String COMPOSITE_OPERATION_ID = "composite";
15  
16      ICompositeURLDescriptor createCompositeURLDescriptor(String mainCharSet);
17  
18      ICompositeURLDescriptor parseCompositeURLDescriptor(String compositeURL);
19  
20      /**
21       * 
22       * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
23       * @version $Revision: 1.1 $ $Date: 2008/03/17 14:30:48 $
24       */
25      public interface ICompositeURLDescriptor {
26          void addUrl(String url, String charSet);
27  
28          String generateURL();
29  
30          IURLInformation[] listURLs();
31  
32          String getMainCharSet();
33  
34          public interface IURLInformation {
35              String getURL();
36  
37              String getCharSet();
38          }
39      }
40  }