in src/main/java/org/apache/sling/hapi/client/forms/internal/FormValues.java [101:107]
public HttpEntity toUrlEncodedEntity() {
try {
return new UrlEncodedFormEntity(list.flatten(), "UTF-8");
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}