com.sap.security.api
Interface UserAccountListener
- public interface UserAccountListener
This class allows to register for user mangagement events.
IUserListener follows the observer pattern. An observer has to register
via registerForEvent. An observer can subscribe more than one time to an event
by using different namespaces.
Copyright (c) SAP Portals Europe GmbH 2001
- Version:
- $Revision: #1 $
|
Method Summary |
void |
userAccountAdded(java.lang.String uniqueIdOfAccount)
userAccountAdded() is called if event INFORM_ON_USERACCOUNT_ADDED is fired from
registered factory |
void |
userAccountLogOut(java.lang.String uniqueIdOfAccount)
userAccountLogOut() is called if event INFORM_ON_USERACCOUNT_LOGOUT is fired from
registered factory |
void |
userAccountRemoved(java.lang.String uniqueIdOfAccount)
userAccountRemoved() is called if event INFORM_ON_USERACCOUNT_REMOVED is fired from
registered factory |
INFORM_ON_USERACCOUNT_ADDED
public static final int INFORM_ON_USERACCOUNT_ADDED
INFORM_ON_USERACCOUNT_REMOVED
public static final int INFORM_ON_USERACCOUNT_REMOVED
INFORM_ON_USERACCOUNT_LOGOUT
public static final int INFORM_ON_USERACCOUNT_LOGOUT
userAccountAdded
public void userAccountAdded(java.lang.String uniqueIdOfAccount)
throws UMException
- userAccountAdded() is called if event INFORM_ON_USERACCOUNT_ADDED is fired from
registered factory
- Parameters:
uniqueIdOfAccount: - name of the newly added user account- Throws:
UMException -
userAccountRemoved
public void userAccountRemoved(java.lang.String uniqueIdOfAccount)
throws UMException
- userAccountRemoved() is called if event INFORM_ON_USERACCOUNT_REMOVED is fired from
registered factory
- Parameters:
uniqueIdOfAccount: - name of the removed user account- Throws:
UMException -
userAccountLogOut
public void userAccountLogOut(java.lang.String uniqueIdOfAccount)
throws UMException
- userAccountLogOut() is called if event INFORM_ON_USERACCOUNT_LOGOUT is fired from
registered factory
- Parameters:
uniqueIdOfAccount: - name of the user account who logged out- Throws:
UMException -
Copyright © 2002 SAP AG All Rights Reserved.