Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c391b142e844db27f4764862dbac5c500252308c (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2014, 2015 Wind River Systems, Inc.
 * 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:
 *    Markus Schorn - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.remote.core;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.remote.core.AbstractRemoteServices;
import org.eclipse.remote.core.IRemoteServicesDescriptor;

public class TCFRemoteServices extends AbstractRemoteServices {
	public static final String TCF_ID = "org.eclipse.tcf.te.tcf.remote.core.TCFService"; //$NON-NLS-1$

	private final TCFConnectionManager fConnectionManager = new TCFConnectionManager(this);

	public TCFRemoteServices(IRemoteServicesDescriptor descriptor) {
		super(descriptor);
	}

	@Override
    public TCFConnectionManager getConnectionManager() {
		return fConnectionManager;
	}

	@Override
    public boolean initialize(IProgressMonitor monitor) {
		fConnectionManager.initialize();
		return true;
	}

	@Override
    public int getCapabilities() {
		return 0;
	}
}

Back to the top