Package org.jboss.resteasy.util

Examples of org.jboss.resteasy.util.GroupParameterParser


   @Test
   public void testOne() throws Exception
   {
      String params = "a=b; c=d; e=\"f,;\" , one=two; three=\"four\"";

      GroupParameterParser parser = new GroupParameterParser();
      List<Map<String, String>> groups = parser.parse(params, ';', ',');
      System.out.println(groups);
      Assert.assertEquals(2, groups.size());
   }
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.util.GroupParameterParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.