Get vs getObject in IIQ

Hi all,

I would like to know What is the difference between get and getObject in IIQ?

Thanks in advance

@rishavghoshacc

Are you referring to which exact methods and its difference. ? Let me know.

Thanks

@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.

1 Like

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