* @throws DocumentReadException
*/
public Properties readDCProperties(POIXMLDocument document) throws IOException, DocumentReadException
{
POIXMLPropertiesTextExtractor extractor = new POIXMLPropertiesTextExtractor(document);
CoreProperties coreProperties = extractor.getCoreProperties();
Nullable<String> lastModifiedBy = coreProperties.getUnderlyingProperties().getLastModifiedByProperty();
if (lastModifiedBy != null && lastModifiedBy.getValue() != null && lastModifiedBy.getValue().length() > 0)
{
props.put(DCMetaData.CONTRIBUTOR, lastModifiedBy.getValue());