1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

Remove all traces of passwordPersistence extension point

This commit is contained in:
Martin Oberhuber 2006-09-21 08:25:27 +00:00
parent 5eb8b30168
commit 56d3e077e9
5 changed files with 1 additions and 169 deletions

View file

@ -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_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_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_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_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_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> <li><a href="org_eclipse_rse_ui_propertyPages.html">org.eclipse.rse.ui.propertyPages</a></li>

View file

@ -26,7 +26,6 @@ extPoint.remoteSystemsViewPreferencesActions = Remote Systems View Preferences A
extPoint.compile = Remote Compile Commands extPoint.compile = Remote Compile Commands
extPoint.archivehandlers = Remote Archive Handlers extPoint.archivehandlers = Remote Archive Handlers
extPoint.mountPathMappers = Mount Path Mappers extPoint.mountPathMappers = Mount Path Mappers
extPoint.password = Remote Systems Password Registry
extPoint.rseConfigDefaults = Configure Remote System Explorer Defaults extPoint.rseConfigDefaults = Configure Remote System Explorer Defaults
systemType.iseries = iSeries native operating system (OS/400 or i5/OS) systemType.iseries = iSeries native operating system (OS/400 or i5/OS)

View file

@ -307,31 +307,6 @@ Contributors:
<extension-point id="popupMenus" name="%extPoint.popupMenus" schema="schema/popupMenus.exsd"/> <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 --> <!-- EXTENSION POINT: org.eclipse.rse.ui.compile -->
<!-- ================================================================================== --> <!-- ================================================================================== -->
@ -916,17 +891,6 @@ Contributors:
</extension> </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 --> <!-- RSE Creation Wizards from File -> New -->
<!-- ================================================================= --> <!-- ================================================================= -->

View file

@ -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&apos;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 &lt;code&gt;true&lt;/code&gt; 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:
&lt;pre&gt;
&lt;extension point=&quot;org.eclipse.rse.ui.passwordPersistence&quot;&gt;
&lt;provider
id=&quot;com.acme.iseries.passwordpersistence&quot;
systemType=&quot;iSeries&quot;
caseSensitive=&quot;false&quot;&gt;
&lt;/provider&gt;
&lt;/extension&gt;
&lt;/pre&gt;
</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>

View file

@ -38,8 +38,7 @@ import org.eclipse.rse.ui.RSEUIPlugin;
/** /**
* PasswordPersistenceManager manages the saving and retreiving of user ID / passwords * PasswordPersistenceManager manages the saving and retreiving of user ID / passwords
* to the Eclipse keyring for registered system types. Registration is done via the * to the Eclipse keyring for registered system types.
* org.eclipse.rse.core.passwordPersistence extension point.
* *
* @author yantzi * @author yantzi
*/ */