Hi
My understanding is that
@Path("ab")
won't match "aB"
and if needed one should have two methods with
@Path("ab")
and
@Path("aB")
or a single method with
@Path("{i:a[Bb]}")
I wonder if the runtime should optionally support the case sensitivity
to help users with writing simpler resource classes ?
Guess one can utilize in the future a well known property for that...
Cheers, Sergey