Hi,
Is there any way to get UriTemplate to match wild cards? In a nut
shell, the number of segments in a uri is indeterminate (I am not
talking about the terminal segment which can be handled using
limited=false). For instance, @UriTemplate(value="{name}/{workspace}/
{folders}/edit"). Here the {folders} may have one or more segments.
It would then be really nice to have @UriParam("folders") String[]
folders. One could then argue for generalizing this by supporting
regular expressions, though I have no current use cases to require
support for that. I am pretty sure UriTemplate & UriParam doesn't
offer this. If not, does something like this make sense? Could it
possibly be supported at some point?
I know there are all sorts of implications to having this support,
especially how you have have trickle down support for parts of the
URI. Haven't really thought about it.
Thanks for your time,
Kind regards
su./hail