"content", //the name MUST BE "content"
new MultipartContentBody(content));
//now add the content (ordering is important, because the first
//part will be assumed the original document and all following are
//assumed alternate - transformed - versions
content.addBodyPart(new FormBodyPart(
"http://www.example.com/test.html", //the id of the content
new StringBody(HTML_CONTENT, "text/html", UTF8)));
content.addBodyPart(new FormBodyPart(
"http://www.example.com/test.txt",
new StringBody(extraTextConent, "text/plain", UTF8)));