Article

coolguys's picture

Removing Group Memberships in the IDM Vault

Author Info

26 March 2008 - 7:15am
Submitted by: coolguys

article
Reads:

1910

Score:
0
0
 
Comments:

0

Problem

A Forum reader recently asked:

"Based on some events in IDVault, I want to trigger a policy on Subscrber/Evebt Transformation, which should remove all group-membership for the "current-user" / currentObject , so that user is not the member of any type of Groups in the IDVault at all."

And here is the response from Father Ramon ...

Solution

Actually, you have to remove each group membership individually in order for the reverse link to be removed. What you want to do is something more like this:

<do-for-each>
  <arg-node-set>
   <token-src-attr name="Group Membership"/>
  </arg-node-set>
  <arg-actions>
   <do-remove-src-attr-value name="Group Membership">
    <arg-value>
     <token-local-variable name="current-node"/>
    </arg-value>
   </do-remove-src-attr-value>
   <do-remove-src-attr-value name="Security Equals">
    <arg-value>
     <token-local-variable name="current-node"/>
    </arg-value>
   </do-remove-src-attr-value>
  </arg-actions>
</do-for-each>


Author Info

26 March 2008 - 7:15am
Submitted by: coolguys




User Comments

© 2009 Novell, Inc. All Rights Reserved.