Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b8eb9b6961c484ea3c73b9f86a51bcff438e396e (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
/*******************************************************************************
 * Copyright (c) 2007, 2011 Wind River Systems, Inc. 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:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.internal.services.remote;

import org.eclipse.tcf.protocol.IChannel;
import org.eclipse.tcf.protocol.IService;

/**
 * Objects of GenericProxy class represent remote services, which don't
 * have a proxy class defined for them.
 * Clients still can use such services, but framework will not provide
 * service specific utility methods for message formatting and parsing.
 */
public class GenericProxy implements IService {

    private final IChannel channel;
    private final String name;

    public GenericProxy(IChannel channel, String name) {
        this.channel = channel;
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public IChannel getChannel() {
        return channel;
    }
}

Back to the top