com.iplanet.am.sdk
Interface AMUserEntryProcessed


Deprecated. This interface has been deprecated. Please use AMCallBack

public interface AMUserEntryProcessed

Interface that needs to be implemented by external applications inorder to do some special processing for user creations/deletions/modifications. The implementation module is pluggable and is configurable via AMConfig.properties. The property to set is com.iplanet.am.sdk.userEntryProcessingImpl.
NOTE: All these interface methods will be invoked whenever a user entry is created/modified/deleted using Sun Java System Access Manager SDK.


Method Summary
 void processUserAdd(SSOToken token, java.lang.String userDN, java.util.Map attributes)
          Deprecated. Method which gets invoked whenever a user is created
 void processUserDelete(SSOToken token, java.lang.String userDN, java.util.Map attributes)
          Deprecated. Method which gets invoked whenever a user entry is deleted
 void processUserModify(SSOToken token, java.lang.String userDN, java.util.Map oldAttributes, java.util.Map newAttributes)
          Deprecated. Method which gets invoked whenever a user entry is modified
 

Method Detail

processUserAdd

public void processUserAdd(SSOToken token,
                           java.lang.String userDN,
                           java.util.Map attributes)
Deprecated. 
Method which gets invoked whenever a user is created

Parameters:
token - the single sign on token.
userDN - the DN of the user being added
attributes - a map consisting of attribute names and a set of values for each of them

processUserModify

public void processUserModify(SSOToken token,
                              java.lang.String userDN,
                              java.util.Map oldAttributes,
                              java.util.Map newAttributes)
Deprecated. 
Method which gets invoked whenever a user entry is modified

Parameters:
token - the single sign on token.
userDN - the DN of the user being modified
oldAttributes - a map consisting of attribute names and a set of values for each of them before modification
newAttributes - a map consisting of attribute names and a set of values for each of them after modification

processUserDelete

public void processUserDelete(SSOToken token,
                              java.lang.String userDN,
                              java.util.Map attributes)
Deprecated. 
Method which gets invoked whenever a user entry is deleted

Parameters:
token - the single sign on token.
userDN - the DN of the user being deleted
attributes - a map consisting of attribute names and a set of values for each of them


Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.