-
Type: Bug
-
Status: Resolved
-
Priority: Blocker
-
Resolution: Fixed
-
Affects Version/s: 6.0-HF14, 7.3
-
Component/s: Automation
-
Sprint:TGV 02
When using a content enricher, the contextParamters are in the JSON response, but document object in automation client does not map this values
Example :
PaginableDocuments docs = (PaginableDocuments)session.newRequest(operationID) .setHeader(Constants.HEADER_NX_SCHEMAS, "*") .setHeader("X-NXContext-Category", "custom-enricher")
Json response (snippet) :
"contextParameters": { "myCustomEnricher": { "myProp": "Value1" } }
In automation client, I should be able to get Value1 in myDoc.getContextParameters()