blob: 938a8a0e703a0e2ea122551f850e0faf6abe48b7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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
*
* Contributors:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.rdt.core.serviceproviders;
import org.eclipse.ptp.remote.core.IRemoteConnection;
import org.eclipse.ptp.remote.core.IRemoteServices;
import org.eclipse.ptp.services.core.IServiceProvider;
/**
* Provides execution services for shell commands over a remote connection,
* and remote file manipulation services.
*
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
* part of a work in progress. There is no guarantee that this API will work or
* that it will remain the same. Please do not use this API without consulting
* with the RDT team.
*
* @author crecoskie
*/
public interface IRemoteExecutionServiceProvider extends IServiceProvider {
/**
* Gets the provider of remote services.
*
* @return IRemoteServices
*/
public IRemoteServices getRemoteServices();
/**
* Gets the connection to use for this service. The connection may not be open, so
* clients should check to make sure it is open before using it.
*
* @return IRemoteConnection
*/
public IRemoteConnection getConnection();
}