1
2
3
4 package org.rcfaces.core.internal.contentAccessor;
5
6
7
8
9
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
23
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 }