name | data type | description |
---|---|---|
mapping | TemplateMigrationMapping | Returns the mapping for this migration request |
enabledPreProcessors | array of MigrationPreProcessor | Returns the list of enabled pre processors that were specified for this migration request |
enabledPostProcessors | array of MigrationPostProcessor | Returns the list of enabled post processors that were specified for this migration request |
options | map of string | Returns a key value map which represents the options which were set for this request |
Example
{ "mapping" : { "nodeId" : 12345, "editableTagMappings" : [ { "partMappings" : [ { }, { } ], "fromTagId" : 12345, "toTagId" : 12345 }, { "partMappings" : [ { }, { } ], "fromTagId" : 12345, "toTagId" : 12345 } ], "nonEditableTagMappings" : [ { "fromTagId" : 12345, "toTagId" : 12345 }, { "fromTagId" : 12345, "toTagId" : 12345 } ], "fromTemplateId" : 12345, "toTemplateId" : 12345 }, "enabledPreProcessors" : [ { "className" : "...", "orderId" : 12345 }, { "className" : "...", "orderId" : 12345 } ], "enabledPostProcessors" : [ { "className" : "...", "orderId" : 12345 }, { "className" : "...", "orderId" : 12345 } ], "options" : { "property1" : "...", "property2" : "..." } }