Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/core/LocalPeer.java')
-rw-r--r--plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/core/LocalPeer.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/core/LocalPeer.java b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/core/LocalPeer.java
new file mode 100644
index 000000000..d2d4e41ba
--- /dev/null
+++ b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/core/LocalPeer.java
@@ -0,0 +1,43 @@
+/*******************************************************************************
+ * 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.TransientPeer;
+import org.eclipse.tm.tcf.protocol.IPeer;
+import org.eclipse.tm.tcf.protocol.Protocol;
+
+/**
+ * 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 TransientPeer {
+
+ private static Map<String,String> createAttributes() {
+ Map<String, String> attrs = new HashMap<String, String>();
+ attrs.put(ATTR_ID, "TCFLocal");
+ attrs.put(IPeer.ATTR_SERVICE_MANGER_ID, ServiceManager.getID());
+ attrs.put(IPeer.ATTR_AGENT_ID, Protocol.getAgentID());
+ 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());
+ }
+} \ No newline at end of file

Back to the top