Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6c38ba360aae5a07c59382c56408fdaeacca4309 (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, 2010 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.tm.internal.tcf.core;

import java.util.HashMap;
import java.util.Map;

import org.eclipse.tm.tcf.core.AbstractPeer;

/**
 * LocalPeer object represents local end-point of TCF communication channel.
 * There should be exactly one such object in a TCF agent.
 * The object can be used to open a loop-back communication channel that allows
 * the agent to access its own services same way as remote services.
 * Note that "local" here is relative to the agent, and not same as in "local host".
 */
public class LocalPeer extends AbstractPeer {

    private static Map<String,String> createAttributes() {
        Map<String, String> attrs = new HashMap<String, String>();
        attrs.put(ATTR_ID, "TCFLocal");
        attrs.put(ATTR_NAME, "Local Peer");
        attrs.put(ATTR_OS_NAME, System.getProperty("os.name"));
        attrs.put(ATTR_TRANSPORT_NAME, "Loop");
        return attrs;
    }

    public LocalPeer() {
        super(createAttributes());
    }
}

Back to the top