Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Dykstal2008-06-06 18:26:49 +0000
committerDavid Dykstal2008-06-06 18:26:49 +0000
commitb2c5e272882966cb560066430f9e9f17afe6f6e4 (patch)
treec7b2e555a87e28790fda98d664f5cd5db7997cd8
parent9836bd29b26e6aa666b61478a091b7b35c27cf6f (diff)
downloadorg.eclipse.tm-b2c5e272882966cb560066430f9e9f17afe6f6e4.tar.gz
org.eclipse.tm-b2c5e272882966cb560066430f9e9f17afe6f6e4.tar.xz
org.eclipse.tm-b2c5e272882966cb560066430f9e9f17afe6f6e4.zip
[208953] [apidoc] Document how to disable system types by default via plugin_customization.ini
https://bugs.eclipse.org/bugs/show_bug.cgi?id=208953
-rw-r--r--rse/doc/org.eclipse.rse.doc.isv/reference/misc/runtime-options.html22
1 files changed, 21 insertions, 1 deletions
diff --git a/rse/doc/org.eclipse.rse.doc.isv/reference/misc/runtime-options.html b/rse/doc/org.eclipse.rse.doc.isv/reference/misc/runtime-options.html
index 850887e31..c157c3aae 100644
--- a/rse/doc/org.eclipse.rse.doc.isv/reference/misc/runtime-options.html
+++ b/rse/doc/org.eclipse.rse.doc.isv/reference/misc/runtime-options.html
@@ -2,7 +2,8 @@
<html>
<head>
-<meta name="copyright" content="Copyright (c) IBM Corporation and others 2005, 2007. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page.">
+<meta name="copyright" content="Copyright (c) IBM Corporation and others 2005, 2008. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page.">
+<!-- David Dykstal (IBM) - [208953] document how to disable system types -->
<meta name="Author" content="IBM">
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
@@ -53,6 +54,25 @@ The id of the default persistence provider.
This provider is used when new profiles are created and an explicit persistence provider is not set for them.
The default value is <code>org.eclipse.rse.persistence.MetadataPropertyFileProvider</code>
</dd>
+<dl>
+<dt>org.eclipse.rse.core/{systemTypeID}.systemType.enabled</dt>
+<dd>
+<p>
+This preference allows you to disable installed system types on a product basis.
+Values may be true or false.
+</p>
+<dl>
+<dt>true</dt>
+<dd>The system type is enabled. Connections of this system type may be created.</dd>
+<dt>false</dt>
+<dd>The system type is disabled. Connections of this system type may not be created. The system type will be unavailable in the user interface.</dd>
+</dl>
+<p>The default value is true for each installed system type.</p>
+<p>The following example shows how to disable the "telnet" system type.</p>
+<xmp>
+org.eclipse.rse.core/org.eclipse.rse.systemtype.telnet.systemType.enabled = false
+</xmp>
+</dd>
</dl>
<h3>User Interface Preferences</h3>

Back to the top