RM custom imap metadata extracter config functionality

- rest bindings working
 - should be sufficient functionaility to make progress on UI development
 - custom properties are not yet persisted anywhere

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@15938 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2009-08-26 17:39:58 +00:00
parent 6240a9b739
commit 49cb56a412

View File

@@ -42,6 +42,7 @@ import javax.mail.internet.MimeMessage.RecipientType;
import org.alfresco.repo.content.MimetypeMap;
import org.alfresco.service.cmr.repository.ContentReader;
import org.alfresco.service.namespace.QName;
/**
* Metadata extractor for the PDF documents.
@@ -136,5 +137,24 @@ public class RFC822MetadataExtracter extends AbstractMappingMetadataExtracter
// Done
return rawProperties;
}
/**
* Back door for RM
* @return
*/
public final Map<String, Set<QName>> getCurrentMapping()
{
return super.getMapping();
}
// /**
// * Back door for RM
// * @return
// */
// public void setMapping(Map<String, Set<QName>> mapping)
// {
// super.setMapping(mapping);
// }
}