mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 06:45:43 +02:00
Remove all traces of passwordPersistence extension point
This commit is contained in:
parent
5eb8b30168
commit
56d3e077e9
5 changed files with 1 additions and 169 deletions
|
@ -20,7 +20,6 @@
|
|||
<li><a href="org_eclipse_rse_ui_keystoreProviders.html">org.eclipse.rse.ui.keystoreProviders</a></li>
|
||||
<li><a href="org_eclipse_rse_ui_mountPathMappers.html">org.eclipse.rse.ui.mountPathMappers</a></li>
|
||||
<li><a href="org_eclipse_rse_ui_newConnectionWizardDelegates.html">org.eclipse.rse.ui.newConnectionWizardDelegates</a></li>
|
||||
<li><a href="org_eclipse_rse_ui_passwordPersistence.html">org.eclipse.rse.ui.passwordPersistence</a></li>
|
||||
<li><a href="org_eclipse_rse_ui_persistenceProviders.html">org.eclipse.rse.ui.persistenceProviders</a></li>
|
||||
<li><a href="org_eclipse_rse_ui_popupMenus.html">org.eclipse.rse.ui.popupMenus</a></li>
|
||||
<li><a href="org_eclipse_rse_ui_propertyPages.html">org.eclipse.rse.ui.propertyPages</a></li>
|
||||
|
|
|
@ -26,7 +26,6 @@ extPoint.remoteSystemsViewPreferencesActions = Remote Systems View Preferences A
|
|||
extPoint.compile = Remote Compile Commands
|
||||
extPoint.archivehandlers = Remote Archive Handlers
|
||||
extPoint.mountPathMappers = Mount Path Mappers
|
||||
extPoint.password = Remote Systems Password Registry
|
||||
extPoint.rseConfigDefaults = Configure Remote System Explorer Defaults
|
||||
|
||||
systemType.iseries = iSeries native operating system (OS/400 or i5/OS)
|
||||
|
|
|
@ -307,31 +307,6 @@ Contributors:
|
|||
|
||||
<extension-point id="popupMenus" name="%extPoint.popupMenus" schema="schema/popupMenus.exsd"/>
|
||||
|
||||
<!-- ================================================================================== -->
|
||||
<!-- EXTENSION POINT: org.eclipse.rse.ui.passwordPersistence -->
|
||||
<!-- ================================================================================== -->
|
||||
<!-- Extension point for adding a system type to the Remote Systems password registry -->
|
||||
<!-- -->
|
||||
<!-- Example of extension configuration: -->
|
||||
<!-- <extension point="org.eclipse.rse.ui.passwordPersistence"> -->
|
||||
<!-- <provider -->
|
||||
<!-- id="com.acme.iseries.passwordpersistence" -->
|
||||
<!-- systemType="iSeries" -->
|
||||
<!-- caseSensitive="false"> -->
|
||||
<!-- </provider> -->
|
||||
<!-- </extension> -->
|
||||
<!-- -->
|
||||
<!-- <provider> tag attributes: -->
|
||||
<!-- ================================================================================== -->
|
||||
<!-- id => unique id for this extension point. -->
|
||||
<!-- systemType => System type that saved passwords are used for. This will be -->
|
||||
<!-- displayed in the Add Password Information dialog's system type -->
|
||||
<!-- drop down. -->
|
||||
<!-- caseSensitive => [optional] If the user ID is case sensitive [ true | false ] -->
|
||||
<!-- ================================================================================== -->
|
||||
|
||||
<extension-point id="passwordPersistence" name="%extPoint.password" schema="schema/passwordPersistence.exsd"/>
|
||||
|
||||
<!-- ================================================================================== -->
|
||||
<!-- EXTENSION POINT: org.eclipse.rse.ui.compile -->
|
||||
<!-- ================================================================================== -->
|
||||
|
@ -916,17 +891,6 @@ Contributors:
|
|||
</extension>
|
||||
|
||||
|
||||
<!-- ================================================================= -->
|
||||
<!-- Add Linux and Unix system types to the Remote Systems password -->
|
||||
<!-- registry -->
|
||||
<!-- ================================================================= -->
|
||||
<extension point="org.eclipse.rse.ui.passwordPersistence">
|
||||
<provider systemType="Linux"
|
||||
id="org.eclipse.rse.universal.passwordPersistence.Linux"/>
|
||||
<provider systemType="Unix"
|
||||
id="org.eclipse.rse.universal.passwordPersistence.Unix"/>
|
||||
</extension>
|
||||
|
||||
<!-- ================================================================= -->
|
||||
<!-- RSE Creation Wizards from File -> New -->
|
||||
<!-- ================================================================= -->
|
||||
|
|
|
@ -1,129 +0,0 @@
|
|||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!-- Schema file written by PDE -->
|
||||
<schema targetNamespace="org.eclipse.rse.ui">
|
||||
<annotation>
|
||||
<appInfo>
|
||||
<meta.schema plugin="org.eclipse.rse.ui" id="passwordPersistence" name="Password Persistence"/>
|
||||
</appInfo>
|
||||
<documentation>
|
||||
Extension point for adding a system type to the Remote Systems password registry.
|
||||
</documentation>
|
||||
</annotation>
|
||||
|
||||
<element name="extension">
|
||||
<annotation>
|
||||
<documentation>
|
||||
(no description available)
|
||||
</documentation>
|
||||
</annotation>
|
||||
<complexType>
|
||||
<sequence>
|
||||
<element ref="provider" minOccurs="1" maxOccurs="unbounded"/>
|
||||
</sequence>
|
||||
<attribute name="point" type="string" use="required">
|
||||
<annotation>
|
||||
<documentation>
|
||||
|
||||
</documentation>
|
||||
</annotation>
|
||||
</attribute>
|
||||
<attribute name="id" type="string">
|
||||
<annotation>
|
||||
<documentation>
|
||||
|
||||
</documentation>
|
||||
</annotation>
|
||||
</attribute>
|
||||
<attribute name="name" type="string">
|
||||
<annotation>
|
||||
<documentation>
|
||||
|
||||
</documentation>
|
||||
</annotation>
|
||||
</attribute>
|
||||
</complexType>
|
||||
</element>
|
||||
|
||||
<element name="provider">
|
||||
<annotation>
|
||||
<documentation>
|
||||
(no description available)
|
||||
</documentation>
|
||||
</annotation>
|
||||
<complexType>
|
||||
<attribute name="id" type="string" use="required">
|
||||
<annotation>
|
||||
<documentation>
|
||||
A unique identifier for this extension.
|
||||
</documentation>
|
||||
</annotation>
|
||||
</attribute>
|
||||
<attribute name="systemType" type="string" use="required">
|
||||
<annotation>
|
||||
<documentation>
|
||||
System type that saved passwords are used for. This will be displayed in the Add Password Information dialog's system type drop down.
|
||||
</documentation>
|
||||
</annotation>
|
||||
</attribute>
|
||||
<attribute name="caseSensitive" type="boolean">
|
||||
<annotation>
|
||||
<documentation>
|
||||
If the user ID is case sensitive or not. This is an optional attribute. If not set, the value <code>true</code> is assumed.
|
||||
</documentation>
|
||||
</annotation>
|
||||
</attribute>
|
||||
</complexType>
|
||||
</element>
|
||||
|
||||
<annotation>
|
||||
<appInfo>
|
||||
<meta.section type="examples"/>
|
||||
</appInfo>
|
||||
<documentation>
|
||||
The following is an example of the extension point schema:
|
||||
<pre>
|
||||
<extension point="org.eclipse.rse.ui.passwordPersistence">
|
||||
<provider
|
||||
id="com.acme.iseries.passwordpersistence"
|
||||
systemType="iSeries"
|
||||
caseSensitive="false">
|
||||
</provider>
|
||||
</extension>
|
||||
</pre>
|
||||
</documentation>
|
||||
</annotation>
|
||||
|
||||
<annotation>
|
||||
<appInfo>
|
||||
<meta.section type="apiInfo"/>
|
||||
</appInfo>
|
||||
<documentation>
|
||||
There is no code to implement for this extension point.
|
||||
</documentation>
|
||||
</annotation>
|
||||
|
||||
<annotation>
|
||||
<appInfo>
|
||||
<meta.section type="implementation"/>
|
||||
</appInfo>
|
||||
<documentation>
|
||||
See the plugin.xml file for plugin org.eclipse.rse.ui for examples of using this extension point.
|
||||
</documentation>
|
||||
</annotation>
|
||||
|
||||
<annotation>
|
||||
<appInfo>
|
||||
<meta.section type="copyright"/>
|
||||
</appInfo>
|
||||
<documentation>
|
||||
Copyright (c) 2002, 2006 IBM Corporation. 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 http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
IBM Corporation - initial API and implementation
|
||||
</documentation>
|
||||
</annotation>
|
||||
|
||||
</schema>
|
|
@ -38,8 +38,7 @@ import org.eclipse.rse.ui.RSEUIPlugin;
|
|||
|
||||
/**
|
||||
* PasswordPersistenceManager manages the saving and retreiving of user ID / passwords
|
||||
* to the Eclipse keyring for registered system types. Registration is done via the
|
||||
* org.eclipse.rse.core.passwordPersistence extension point.
|
||||
* to the Eclipse keyring for registered system types.
|
||||
*
|
||||
* @author yantzi
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue