Printing provisioningplan in JDBC Provisioning rule

Hi,

Is there anyway to print provisioningplan in connector rule? I am working on JDBC provisioning rule. As I know, toXML is not allowed hence anyway for us to print this out?

You can just print the plan object, no need to use toXml method. It works.

Or you can extract account requests, print them

Or you can extract individual attribute requests from the account request and print the values.

I did this couple of times, it works.

By just printing plan, does not shows the full provisioningplan content. Unless I extract and loop through to print out.

I do the same, I iterate the account requests and attribute requests.

log.error(attReq.getName() + "::" + attReq.getValue());

Print all the attributes and the values.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.