How to get/iterate through xml attribute/values like Provisioning Transaction's sml object (attributes)

Hi,
How do we get/iterate value of xml object/column of any provisioning transaction or any similar type of objects.

http://localhost:8080/identityiq/doc/javadoc/
Find “SailPointContext” class, look at its getObject[XXX] methods.

Then you figure out which SailPointObject subclass you are looking for, and how to filter/search the specific instances you are looking for.

For provisioning you want to look at IdentityRequest class. Go to http://localhost:8080/identityiq/debug/debug.jsf and look at the data.

Thanks Wong!

That I understand but I have a query here to get the details dynamically irrespective of referring details in debug mode for each request. I have tried to filter based on the class type and found classes like below.
sailpoint.object.ProvisioningPlan$AccountRequest
java.lang.String
sailpoint.object.ProvisioningResult etc. for the below Attributes values

It can be iterated through found classes with sailpoint.object.ProvisioningPlan.AccountRequest, sailpoint.object.ProvisioningResult based on the attributes’ values but I want to know if any dynamic standard logic/code available to get all types of transaction logs etc.

Perhaps you should describe in detail what you want to achieve.

AuditLog is the object class for all kinds of audit logs, including those for provisioning.
http://localhost:8080/identityiq/doc/javadoc/sailpoint/object/AuditEvent.html

Basically I was trying to iterate through the column ‘attributes’ value from table spt_provisioning_transaction and I was successful to retrieve the same based on classes. But my concern is about the standard approach (if any ) to get such type of xml values.