On Jan 28, 2013, at 6:00 PM, Sergey Beryozkin <sberyozkin_at_talend.com> wrote:
> "By definition, all root resource classes in C must be annotated with the same URI path template modulo variable names." - where C is the list of matched root resource classes so far.
>
> Does the above effectively says that multiple root resources with the same URI template are supported ?
Yes, I believe we had a single class rather than a set in an earlier version of this step.
>
> What does "module variable names means" ? Is it to say that say
>
> @Path("/a/{b}")
>
> and
>
> @Path("/a/{c}")
>
> are the same for the purpose of describing this specific match algorithm ?
Exactly. If you think of these variables as being bound, this is sometimes called alpha renaming.
-- Santiago