On 10/18/07, Tobias Bocanegra <[EMAIL PROTECTED]> wrote:
> ...what about a:
>
> interface ResolvedResource extends Resource {
> public String getResolutionPath();
> }
Even simpler, we weren't really using Resource.getURI until now, so I
simply changed its comment, and will use it instead:
/** The canonical URI that the ResourceResolver used to load this
* Resource. As microsling currently access content over JCR only,
* URIs without a prefix indicate a JCR path in our Repository.
* Microsling uses "/content/xyz" for this URI instead of
"jcr:///content/xyz",
* for example.
*/
String getURI();
-Bertrand