// Our content must be stored as non-summary rich text to
// avoid the 32/64K limits in Domino
NotesRichTextItem contentItem = crawlDoc.createRichTextItem(
NCCONST.ITM_CONTENT);
String content = getContentFields(srcDoc);
contentItem.appendText(content);
contentItem.setSummary(false);
// Update the status of the document to be fetched.
crawlDoc.replaceItemValue(NCCONST.ITM_ACTION, ActionType.ADD.toString());
srcDoc.recycle();