users@jersey.java.net

interpreting matrix parameters from the URI.

From: Rahul Babbar <rahul.babbar1_at_gmail.com>
Date: Tue, 30 Nov 2010 14:22:11 -0800

Hello Jersey Universe !!!,

Lets say i have a uri of the form /foo;a=b;c=d
then normally, we can get the value of a, c using the multi valued map by
doing pathSegment.getMatrixparameters().

However in my case, the uri can be /foo;a>b;c!=d etc
So, i want to get the List of Strings like "a>b", "c!=d" so that i could
interpret it my own way.

Is there a way to accomplish this?

Regards,

Rahul