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

Secure strorage modules

Identifier:
org.eclipse.equinox.security.secureStorage

Description:
Describes implementation of the Equinox secure storage module.

Configuration Markup:

<!ELEMENT extension ( provider)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #REQUIRED

name  CDATA #IMPLIED

>


<!ELEMENT provider ( hint*)>

<!ATTLIST provider

class       CDATA #REQUIRED

priority    CDATA #REQUIRED

description CDATA #IMPLIED

>

  • class - Class implementing password provider interface. The class must extend the org.eclipse.equinox.security.storage.provider.PasswordProvider class.
  • priority - The integer number 0 to 10 describing priority of this password provider, with 0 being the lowest priority. Newly created secure preferences will use the password provider with the highest priority. If multiple providers have the same priority, an arbitrary provider among them will be selected.
  • description - Optional text describing to the user functionality of this password provider.

<!ELEMENT hint EMPTY>

<!ATTLIST hint

value (AutomaticPasswordGeneration)

>

  • value - To help secure storage optimize workflows, providers that acquire master passwords without input from the user the should specify AutomaticPasswordGeneration hint.

Examples:

   <extension
         id=
"custom"

         point=
"org.eclipse.equinox.security.secureStorage"
>
      <provider
            class=
"com.xyz.PasswordProvider"

            priority=
"7"
>
      </provider>
   </extension>

Supplied Implementation:

The org.eclipse.equinox.security.ui bundle supplies default password provider that prompts user to enter the password.

The org.eclipse.equinox.security.win32.x86 fragment provides Windows OS integration.


Copyright (c) 2008 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