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 Plug-in Developer Guide
Previous Page Home Next Page

JAAS Login Module

Identifier:
org.eclipse.equinox.security.loginModule

Description:
The loginModule extension point provides a way for a bundle to register class implementing LoginModule with the Java Authentication and Authorization Service (JAAS).

Configuration Markup:

<!ELEMENT extension ( loginModule)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #REQUIRED

name  CDATA #IMPLIED

>

The extension point descriptor.



<!ELEMENT loginModule EMPTY>

<!ATTLIST loginModule

class       CDATA #REQUIRED

description CDATA #IMPLIED

>

An entry defining a single LoginModule that can be used for authenticating users. See javax.security.auth.spi.LoginModule for more information.


  • class - The fully qualified name of a class which implements the LoginModule provider interface, javax.security.auth.login.spi.LoginModule.
  • description -

Examples:
 <extension
         id=
"httpBasicLoginModule"

         name=
"httpBasicLoginModule"

         point=
"org.eclipse.equinox.security.loginModule"
>
      <loginModule      class=
"org.eclipse.equinox.accounts.internal.auth.module.HttpBasicLoginModule"

description=
"org.eclipse.equinox.accounts.internal.auth.module.HttpBasicLoginModule"
/>
   </extension>

Supplied Implementation:
No public login modules are provided by the platform.


Copyright (c) 2005, 2007 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html


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