formData.addAddAcesParameters(addAces);
formData.addRemoveAcesParameters(removeAces);
formData.addParameter(Constants.PARAM_ACL_PROPAGATION, aclPropagation);
// send and parse
Response resp = post(url, formData.getContentType(), new Output() {
public void write(OutputStream out) throws Exception {
formData.write(out);
}
});
Map<String, Object> json = parseObject(resp.getStream(), resp.getCharset());