blob: aa81085dcce4d317605de3856ba535dc88e0c889 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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 Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.remote.rse;
import org.eclipse.ptp.remote.AbstractRemoteServicesFactory;
import org.eclipse.ptp.remote.IRemoteServicesDelegate;
public class RSEServicesFactory extends AbstractRemoteServicesFactory {
/* (non-Javadoc)
* @see org.eclipse.ptp.remote.AbstractRemoteServicesFactory#doCreate()
*/
protected IRemoteServicesDelegate doCreate() {
return new RSEServices();
}
}