Hi,
I have created metadata property which is shown for every document. Whenever user adds a document, user will also add a workflow to that document. I want to read that property in the workflow to do further processing.
I am adding image which explains what I would like to receive in workflow. I would like to receive the "Comment" properties information in the workflow.
I believe that below code snippet can be used but I am not sure how to get the values of properties defined by us.
Regards,
Ashish
I have created metadata property which is shown for every document. Whenever user adds a document, user will also add a workflow to that document. I want to read that property in the workflow to do further processing.
I am adding image which explains what I would like to receive in workflow. I would like to receive the "Comment" properties information in the workflow.
I believe that below code snippet can be used but I am not sure how to get the values of properties defined by us.
Code: Select all
Let me know if anybody has any suggestionsMetadataExtractormdExtractor = new MetadataExtractor(Config.KEA_AUTOMATIC_KEYWORD_EXTRACTION_NUMBER);
MetadataDTO mdDTO = mdExtractor.extract(is, tmpKea);
log.info("Creator: "+mdDTO.getCreator());Regards,
Ashish
