schema.secureStorage.exsd Maven / Gradle / Ivy
The newest version!
Describes implementation of the Equinox secure storage module.
Class implementing password provider interface. The class must extend the <tt>org.eclipse.equinox.security.storage.provider.PasswordProvider</tt> class.
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.
Optional text describing to the user functionality of this password provider.
To help secure storage optimize workflows, providers that acquire master passwords without input from the user the should specify <tt>AutomaticPasswordGeneration</tt> hint.
<pre>
<extension
id="custom"
point="org.eclipse.equinox.security.secureStorage">
<provider
class="com.xyz.PasswordProvider"
priority="7">
</provider>
</extension>
</pre>
[Enter API information here.]
<p>The <code>org.eclipse.equinox.security.ui</code> bundle supplies default password provider that prompts user to enter the password.</p>
<p>The <code>org.eclipse.equinox.security.win32.x86</code> fragment provides Windows OS integration.</p>
Copyright (c) 2008 IBM Corporation and others.<br>
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 <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>