Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6b4ced40f8157f5396cf0f782a4b1da5ca3a7d84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*******************************************************************************
 * Copyright (c) 2008, 2011 Anyware Technologies 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:
 *     Anyware Technologies  - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.protocol;

/**
 * Clients can implement this interface if they want to provide implementation of a local service or
 * remote service proxy.
 */
public interface IServiceProvider {

    public IService[] getLocalService(IChannel channel);

    public IService getServiceProxy(IChannel channel, String service_name);
}

Back to the top