public interface ILoginContextListener
This interface is not intended to be implemented or extended by clients.
ILoginContextListener| Modifier and Type | Method and Description |
|---|---|
void |
onLoginFinish(Subject subject,
LoginException loginException)
This method is called after login sequence is finished.
|
void |
onLoginStart(Subject subject)
This method is called before login starts.
|
void |
onLogoutFinish(Subject subject,
LoginException logoutException)
This method is called after logout sequence finishes.
|
void |
onLogoutStart(Subject subject)
This method is called before logout starts.
|
void onLoginStart(Subject subject)
subject - the subject being authenticated, might be null
if there is no subject associated the context at this timevoid onLoginFinish(Subject subject, LoginException loginException)
subject - the subject being authenticated, might be null
if there is no subject associated the context at this timeloginException - null if login succeeded, otherwise contains
exception caused login to failvoid onLogoutStart(Subject subject)
subject - the authenticated subject, might be null
if there is no subject associated the context at this timevoid onLogoutFinish(Subject subject, LoginException logoutException)
subject - the authenticated subject, might be null
if there is no subject associated the context at this timelogoutException - null if logout succeeded, otherwise contains
exception caused logout to fail
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.