Remote Services

Identifier:
org.eclipse.ptp.remote.core.remoteServices

Description:
This extension point is used to add a remote services provider.

Configuration Markup:

<!ELEMENT extension (remoteServices)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT remoteServices EMPTY>

<!ATTLIST remoteServices

id             CDATA #REQUIRED

name           CDATA #REQUIRED

scheme         CDATA #REQUIRED

class          CDATA #REQUIRED

newConnections (true | false) >


Examples:

   <extension
         point="org.eclipse.ptp.remote.core.remoteServices">
      <remoteServices
            class="org.eclipse.ptp.internal.remote.core.services.local.LocalServicesFactory"
            id="org.eclipse.ptp.remote.LocalServices"
            name="Local"
            newConnections="false"
            scheme="file">
      </remoteServices>
   </extension>

API Information:
The value of the class attribute must implement org.eclipse.ptp.remote.core.IRemoteServicesFactory.

Supplied Implementation:
The remote package provides a remote services implementation for local services.


Copyright (c) 2013 IBM Corporation and others. 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