From 56d3e077e994ba4e3320d5c167e530afb715e9f9 Mon Sep 17 00:00:00 2001
From: Martin Oberhuber < martin.oberhuber@windriver.com>
Date: Thu, 21 Sep 2006 08:25:27 +0000
Subject: [PATCH] Remove all traces of passwordPersistence extension point
---
.../reference/extension-points/index.html | 1 -
.../org.eclipse.rse.ui/plugin.properties | 1 -
rse/plugins/org.eclipse.rse.ui/plugin.xml | 36 -----
.../schema/passwordPersistence.exsd | 129 ------------------
.../rse/core/PasswordPersistenceManager.java | 3 +-
5 files changed, 1 insertion(+), 169 deletions(-)
delete mode 100644 rse/plugins/org.eclipse.rse.ui/schema/passwordPersistence.exsd
diff --git a/rse/doc/org.eclipse.rse.doc.isv/reference/extension-points/index.html b/rse/doc/org.eclipse.rse.doc.isv/reference/extension-points/index.html
index 2707576d394..3bac97b1b08 100755
--- a/rse/doc/org.eclipse.rse.doc.isv/reference/extension-points/index.html
+++ b/rse/doc/org.eclipse.rse.doc.isv/reference/extension-points/index.html
@@ -20,7 +20,6 @@
org.eclipse.rse.ui.keystoreProviders
org.eclipse.rse.ui.mountPathMappers
org.eclipse.rse.ui.newConnectionWizardDelegates
- org.eclipse.rse.ui.passwordPersistence
org.eclipse.rse.ui.persistenceProviders
org.eclipse.rse.ui.popupMenus
org.eclipse.rse.ui.propertyPages
diff --git a/rse/plugins/org.eclipse.rse.ui/plugin.properties b/rse/plugins/org.eclipse.rse.ui/plugin.properties
index 3eb167feeb7..8e371322ce2 100644
--- a/rse/plugins/org.eclipse.rse.ui/plugin.properties
+++ b/rse/plugins/org.eclipse.rse.ui/plugin.properties
@@ -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)
diff --git a/rse/plugins/org.eclipse.rse.ui/plugin.xml b/rse/plugins/org.eclipse.rse.ui/plugin.xml
index 02557b56505..ae64e70d59e 100644
--- a/rse/plugins/org.eclipse.rse.ui/plugin.xml
+++ b/rse/plugins/org.eclipse.rse.ui/plugin.xml
@@ -307,31 +307,6 @@ Contributors:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -916,17 +891,6 @@ Contributors:
-
-
-
-
-
-
-
-
-
diff --git a/rse/plugins/org.eclipse.rse.ui/schema/passwordPersistence.exsd b/rse/plugins/org.eclipse.rse.ui/schema/passwordPersistence.exsd
deleted file mode 100644
index 5b983244c24..00000000000
--- a/rse/plugins/org.eclipse.rse.ui/schema/passwordPersistence.exsd
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-
-
-
- Extension point for adding a system type to the Remote Systems password registry.
-
-
-
-
-
-
- (no description available)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- (no description available)
-
-
-
-
-
-
- A unique identifier for this extension.
-
-
-
-
-
-
- System type that saved passwords are used for. This will be displayed in the Add Password Information dialog's system type drop down.
-
-
-
-
-
-
- If the user ID is case sensitive or not. This is an optional attribute. If not set, the value <code>true</code> is assumed.
-
-
-
-
-
-
-
-
-
-
-
- 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>
-
-
-
-
-
-
-
-
- There is no code to implement for this extension point.
-
-
-
-
-
-
-
-
- See the plugin.xml file for plugin org.eclipse.rse.ui for examples of using this extension point.
-
-
-
-
-
-
-
-
- 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
-
-
-
-
diff --git a/rse/plugins/org.eclipse.rse.ui/systems/org/eclipse/rse/core/PasswordPersistenceManager.java b/rse/plugins/org.eclipse.rse.ui/systems/org/eclipse/rse/core/PasswordPersistenceManager.java
index 1b7af8775ef..c70de49f5a4 100644
--- a/rse/plugins/org.eclipse.rse.ui/systems/org/eclipse/rse/core/PasswordPersistenceManager.java
+++ b/rse/plugins/org.eclipse.rse.ui/systems/org/eclipse/rse/core/PasswordPersistenceManager.java
@@ -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
*/