blob: 4dc086a4849f1f47f858c8480071c30119d7c814 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 EclipseSource 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:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.remoteservice;
import org.eclipse.ecf.core.identity.*;
/**
* @since 8.3
*/
public class RemoteServiceNamespace extends Namespace {
private static final long serialVersionUID = 5697857375725279019L;
private static final String REMOTE_SERVICE_SCHEME = "remoteservice"; //$NON-NLS-1$
public static final String NAME = "ecf.namespace.remoteservice"; //$NON-NLS-1$
public RemoteServiceNamespace() {
// nothing
}
public RemoteServiceNamespace(String name, String desc) {
super(name, desc);
}
public ID createInstance(Object[] parameters) throws IDCreateException {
if (parameters == null || parameters.length != 2)
throw new IDCreateException("Parameters incorrect for remote ID creation"); //$NON-NLS-1$
try {
return new RemoteServiceID(this, (ID) parameters[0], ((Long) parameters[1]).longValue());
} catch (Exception e) {
throw new IDCreateException("Exception creating remoteID", e); //$NON-NLS-1$
}
}
public String getScheme() {
return REMOTE_SERVICE_SCHEME;
}
}