Package oracle.iam.platformservice.api
Interface ClientLoginSessionService
public interface ClientLoginSessionService
Service that handles server side events for client login session .
For example it provided hooks that are called when client login sessions are
created/destroyed
Use the
Use the
loginSessionCreated method to setup any server side resources
for a client session
Use the loginSessionDestroyed to release any server side resources
used for a client session- Since:
- OIM 11gR1
- Version:
- $Header: iam/iam-product/features/platformservice/src/main/oracle/iam/platformservice/api/ClientLoginSessionService.java /main/1 2010/04/28 10:21:54 sidhdas Exp $
- Author:
- sidhdas
-
Method Summary
Modifier and TypeMethodDescriptionvoidloginSessionCreated(String userLogin) Sets up server side resources required for a client login sessionvoidloginSessionDestroyed(String userLogin) Releases server side resources for a client login session
-
Method Details
-
loginSessionCreated
Sets up server side resources required for a client login session- Parameters:
userLogin- the user for whom the login session is being created
-
loginSessionDestroyed
Releases server side resources for a client login session- Parameters:
userLogin- the user whose login session is to be destroyed
-