mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-09 10:05:24 +02:00
119 lines
3.7 KiB
XML
119 lines
3.7 KiB
XML
<?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">
|
|
<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">
|
|
<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.
|
|
</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>
|