schema.browseFileTransferProtocolFactory.exsd Maven / Gradle / Ivy
This extension point allows IRemoteFileSystemBrowserFactorys to be defined for given file transfer protocols.
Browse remote file system protocol factory extention point
Protocol to define factory for. For example, http, https, ftp, bittorrent, my.favorite.protocol.
The factory class to use for given protocol. Must implement <b>org.eclipse.ecf.filetransfer.service.IRemoteFileSystemBrowserFactory</b>
Priority relative to other browseFileTransferProtocolFactory extensions. Valid priorities are 0 (highest priority) to 100 (lowest priority). If this optional attribute is not specified, it will automatically be assigned a default priority of 100.
Flag to indicate that the protocol factory will use URIs (rather than URLs...which is the default). True indicates that URIs will be used, and *no* URLStreamHandler will be registered for the associated protocol. If false, URLs will be used and an URLStreamHandler will be registered for the given protocol factory. NOTE: If this flag is true, providers that attempt to access IFileID.getURL() may be unable to do so, since the URI may not be successfully parsed as a URL.
1.0.0
<pre>
<extension
point="org.eclipse.ecf.provider.filetransfer.browseFileTransferProtocolFactory">
<browseFileTransferProtocolFactory
class="org.eclipse.ecf.provider.filetransfer.ssh.ScpBrowseFileTransferFactory"
protocol="scp"
priority="90">
</browseFileTransferProtocolFactory>
</extension>
</pre>
Here is the <b>org.eclipse.ecf.filetransfer.service.IRemoteFileSystemBrowserFactory</b>
<pre>
/**
* Remote file browser factory. This service interface is used by clients to
* create a new IRemoteFileSystemBrowser instance.
*/
public interface IRemoteFileSystemBrowserFactory {
/**
* Get new instance of IRemoteFileSystemBrowser.
*
* @return IRemoteFileSystemBrowser for initiating a retrieval of a remote file.
*/
public IRemoteFileSystemBrowser newInstance();
}
</pre>
None
Copyright (c) 2004 Composent, Inc., IBM 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. Contributors: Composent, Inc. - initial API and implementation, IBM, Inc. - Initial API and implementation