Package com.gistlabs.mechanize.document.json.hypermedia

Examples of com.gistlabs.mechanize.document.json.hypermedia.JsonLink


  }
 
  @Test
  public void setAllVariableProgramatically() {
    JsonNode node = json.find("template-path-segments");
    JsonLink link = new JsonLink(node);
    Map<String, Object> variables = new HashMap<String, Object>();
    variables.put("a", "aaa");
    variables.put("b", "bbb");
    link.setAll(variables);
    assertEquals("http://example.com/aaa/bbb/baz", link.uri());
  }
View Full Code Here

TOP

Related Classes of com.gistlabs.mechanize.document.json.hypermedia.JsonLink

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.