final LocalDate ld = new LocalDate(2013,5,1);
final LocalDateTime ldt = new LocalDateTime(2013,2,1,14,15,0);
final DateTime dt = new DateTime(2013,2,1,14,15,0, DateTimeZone.UTC);
final String s = "New string";
argRepr.mapPut("localDateProperty.value", "2013-05-01");
argRepr.mapPut("localDateTimeProperty.value", "2013-02-01T14:15:00Z");
argRepr.mapPut("dateTimeProperty.value", asIso(dt.toDate()));
argRepr.mapPut("stringProperty.value", s);
final RestfulResponse<JsonRepresentation> result = client.follow(updateLink, argRepr);