To exclude from the list of any given form all resource accounts of type LDAP that are not directly assigned, set the Exclude property as follows:
<Property name=’Exclude’>
<list>
<new class=’com.waveset.object.AttributeCondition’>
<s>type</s>
<s>equals</s>
<s>LDAP</s>
<s>LDAP</s>
</new>
<new class=’com.waveset.object.AttributeCondition’>
<s>directlyAssigned</s>
<s>equals</s>
<s>false</s>
</new>
</list>
</Property>
|