blob: 0d90afb45964944bf69a1cf301f8ef46ec2d6243 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Composent, 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: Composent, Inc. - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.remoteservice.provider;
import java.util.Dictionary;
import org.eclipse.ecf.core.ContainerTypeDescription;
import org.eclipse.ecf.core.identity.Namespace;
/**
* @since 8.7
* A service interface for distribution providers. When instances of this interface are registered, they result in the
* two methods below being called by the org.eclipse.ecf.remoteservice bundle, with the BundleContext from
* the org.eclipse.ecf.remoteservice bundle. Intended to be implemented by remote service distribution provider
* implementations. When instance of this service interface is registered, the methods below will be called
* in order to register the ContainerTypeDescription, Namespace, and AdapterConfig for this distribution
* provider.
*/
public interface IRemoteServiceDistributionProvider {
/**
* Return the ContainerTypeDescription to register for this distribution provider.
* The returned ContainerTypeDescription must not be <code>null</code> and
* should be unique identified via it's name (obtained via {@link ContainerTypeDescription#getName()}.
*
* @return ContainerTypeDescription. Must not be <code>null</code>.
*/
ContainerTypeDescription getContainerTypeDescription();
/**
* Return any properties that are to be used when registering the ContainerTypeDescription
* returned by above method. <code>Null</code> may be returned.
* @return Dictionary to use when registering the ContainerTypeDescription
* May be <code>null</code>.
*/
Dictionary<String, ?> getContainerTypeDescriptionProperties();
/**
* Return the Namespace (or subclass) to register for this distribution provider.
* The returned Namespace may be <code>null</code>. In that case, no
* new Namespace will be registered. If the returned Namespace is non-null,
* It should be uniquely identified via it's name (obtained via {@link Namespace#getName()}.
*
* @return ContainerTypeDescription. May be <code>null</code>.
*/
Namespace getNamespace();
/**
* Return any properties that are to be used when registering the Namespace
* returned by above method. <code>Null</code> may be returned.
* @return Dictionary to use when registering this provider's Namespace.
* May be <code>null</code>.
*/
Dictionary<String, ?> getNamespaceProperties();
/**
* Return any AdapterConfigs to register with the IAdapterManager
* @return AdapterConfig[] holding any AdapterConfigs to be registered
* with the system-wide adaptermanager.
*/
AdapterConfig[] getAdapterConfigs();
}