Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

org.eclipse.equinox.security.auth
Interface ILoginContext


public interface ILoginContext

The ILoginContext is the central entry point for the authentication support. Use it to perform login, logout, and retrieve information associated with the security subject.

This interface is not intended to be implemented by clients.

Restriction:
This interface is not intended to be implemented by clients.

Method Summary
  LoginContext getLoginContext ()
          The method exposes underlying JAAS LoginContext.
  Subject getSubject ()
          Retrieves the current Subject.
 void login ()
          Call this method to perform a login.
 void logout ()
          Call this method to perform a logout.
 void registerListener ( ILoginContextListener listener)
          Adds listener to be notified on security-related events.
 void unregisterListener ( ILoginContextListener listener)
          Removes listener previously registered to receive notifications on security-related events.
 

Method Detail

login

void login()
           throws 
LoginException
Call this method to perform a login.

Throws:
LoginException
See Also:
LoginContext.login()

logout

void logout()
            throws 
LoginException
Call this method to perform a logout.

Throws:
LoginException
See Also:
LoginContext.logout()

getSubject


Subject getSubject()
                   throws 
LoginException
Retrieves the current Subject. Calling this method will force a login to occur if the user is not already logged in.

Returns:
the Subject
Throws:
LoginException
See Also:
LoginContext.getSubject()

registerListener

void registerListener(
ILoginContextListener listener)
Adds listener to be notified on security-related events.

Parameters:
listener - the listener to be registered
See Also:
ILoginContextListener

unregisterListener

void unregisterListener(
ILoginContextListener listener)
Removes listener previously registered to receive notifications on security-related events.

Parameters:
listener - the listener to be unregistered
See Also:
ILoginContextListener

getLoginContext


LoginContext getLoginContext()
                             throws 
LoginException
The method exposes underlying JAAS LoginContext.

Using the LoginContext directly will bypass some of the processing offered by this interface and should be used only when other methods are not sufficient.

Returns:
the underlying JAAS LoginContext
Throws:
LoginException - if exception was encountered while creating LoginContext

Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire