* <code>Content-Description</code> header.
* @return value of the <code>Content-Description</code> when present,
* null otherwise
*/
public String getContentDescription() {
ContentDescriptionField contentDescriptionField =
(ContentDescriptionField) fields.get(CONTENT_DESCRIPTION);
return contentDescriptionField != null ? contentDescriptionField.getDescription() : null;
}