01: /*
02: * Created on Sep 26, 2006
03: */
04: package uk.org.ponder.rsf.templateresolver;
05:
06: /** A TemplateResolverStrategy that distinguishes that its returns should
07: * *all* be aggregated into the current template set, rather than the
08: * first that resolves.
09: * @author Antranig Basman (amb26@ponder.org.uk)
10: *
11: */
12:
13: public interface MultipleTemplateResolverStrategy extends
14: TemplateResolverStrategy {
15: /** @return <code>true</code> if ALL the strings returns from this resolver
16: * should be used to aggregate templates for this request. If <code>false</code>,
17: * aggregating will stop at the first template which resolves successfully.
18: */
19: boolean isMultiple();
20: }
|