1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
point="org.eclipse.ui.ide.filesystemSupport">
<filesystemContributor
class="org.eclipse.remote.internal.jsch.ui.JSchFileSystemContributor"
label="JSch"
scheme="ssh">
</filesystemContributor>
</extension>
<extension
point="org.eclipse.ui.preferenceTransfer">
<transfer
icon="icons/full/obj16/connection.gif"
id="org.eclipse.remote.jsch.transfer.connections"
name="%JSchTransferConnections.name">
<mapping
scope="instance">
<entry
node="org.eclipse.remote.jsch.core/connections">
</entry>
</mapping>
<description>
%JSchTransferConnections.description
</description>
</transfer>
</extension>
<extension
point="org.eclipse.remote.core.authenticator">
<authenticator
class="org.eclipse.remote.internal.jsch.ui.JSchUserAuthenticator"
id="org.eclipse.remote.JSch"
priority="0">
</authenticator>
</extension>
<extension
point="org.eclipse.remote.core.remoteServices">
<connectionTypeService
connectionTypeId="org.eclipse.remote.JSch"
factory="org.eclipse.remote.internal.jsch.ui.JSchUIConnectionService$Factory"
service="org.eclipse.remote.ui.IRemoteUIConnectionService">
</connectionTypeService>
<connectionTypeService
connectionTypeId="org.eclipse.remote.JSch"
factory="org.eclipse.remote.internal.jsch.ui.JSchUIFileService$Factory"
service="org.eclipse.remote.ui.IRemoteUIFileService">
</connectionTypeService>
<connectionService
connectionTypeId="org.eclipse.remote.JSch"
factory="org.eclipse.remote.internal.jsch.ui.JSchUserAuthenticator$Factory"
service="org.eclipse.remote.core.IUserAuthenticatorService">
</connectionService>
</extension>
</plugin>
|