Package org.springframework.web.util

Examples of org.springframework.web.util.UriTemplate.matches()


    public void doWith(ResourceTester content) {

      String href = content.assertHasLink("self", null).getHref();

      UriTemplate uriTemplate = new UriTemplate(template.toString());
      assertThat(String.format("Expected %s to match %s!", href, uriTemplate.toString()), uriTemplate.matches(href),
          is(true));
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.