Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fe9457f4a6795d4b4043023ac89a61358e5f6c68 (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 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.tm.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