I have been trying to implement an update provisioning policy for AD source and I need to check a bit flag in userAccountControl. This is done via bit operators but when I try using java bit operators, identities go into an error state where those operators are considers Lexical errors. I assume that this means it does not support bit operators. Can anyone confirm that? Is there a workaround?
Even something simple like checking userAccountControl for the type of account.
512 - normal account
2048 - interdomain_trust_account
If the userAccountControl is set to 2080, you cannot really check if the account is an interdomain_trust_account or a normal account or even whether its disabled or not.