Hi all,
I would like to know What is the difference between get and getObject in IIQ?
Thanks in advance
Hi all,
I would like to know What is the difference between get and getObject in IIQ?
Thanks in advance
@rishavghoshacc
getObject() → Used to fetch a full object (like Identity, Application, etc.) from the IIQ database.
Example: context.getObject(Identity.class, “rishav”)
get() → Used to get a specific attribute value from an already loaded object.
Example: identity.get(“email”)
This is about object handling in IIQ APIs and BeanShell scripts.
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.