Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 14b2c33be0cf9d6a737b689f0a04bca7e78dbd13 (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
/******************************************************************************* 
 * Copyright (c) 2010-2011 Naumen. 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:
 *   Pavel Samolisov - initial API and implementation
 *******************************************************************************/
package org.eclipse.ecf.remoteservice.rpc.identity;

import java.net.URI;
import org.eclipse.ecf.core.identity.Namespace;
import org.eclipse.ecf.core.identity.URIID;

public class RpcId extends URIID {

	private static final long serialVersionUID = -713344242499901489L;

	public RpcId(Namespace namespace, URI uri) {
		super(namespace, uri);
	}

	public String toString() {
		StringBuffer sb = new StringBuffer("XmlRpcId["); //$NON-NLS-1$
		sb.append(getName()).append("]"); //$NON-NLS-1$
		return sb.toString();
	}
}

Back to the top