LinkRepresentation

API

LinkRepresentation.java
class LinkRepresentation {
  LinkRepresentation()
  LinkRepresentation(JsonNode jsonNode)
  String getRel()
  LinkRepresentation withRel(String rel)
  LinkRepresentation withRel(Rel rel)
  String getHref()
  LinkRepresentation withHref(String href)
  JsonRepresentation getValue()
  String getTitle()
  LinkRepresentation withTitle(String title)
  RestfulHttpMethod getHttpMethod()
  MediaType getType()
  LinkRepresentation withMethod(RestfulHttpMethod httpMethod)
  JsonRepresentation getArguments()     (1)
  int hashCode()
  boolean equals(Object obj)
  String toString()
}
1 getArguments()

Returns the "arguments" json-property of the link (a map).

Members

getArguments()

Returns the "arguments" json-property of the link (a map).

If there is no "arguments" node, then as a convenience will return an empty map.