SailPoint IdentityIQ-Engineer Question Answer
Is the following statement about IdentityIQ rule inputs and outputs correct?
Proposed Solution:
for (int i = 0; i < this.variables.length; i++) {
String name = this.variables[i];
Object value = eval(name);
if (value == void)
print(name + " = void " );
else if (value == null)
print(name + " = null " );
else
print(name + " : " + value.getClass().getSimpleName() + " = " + value);
}
This debug code will print all available inputs and outputs for a BeanShell rule.
SailPoint IdentityIQ-Engineer Summary
- Vendor: SailPoint
- Product: IdentityIQ-Engineer
- Update on: Sep 21, 2026
- Questions: 267

