blob: db54deac9c5bd28c141554bbd155f3f90a5f02fc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.core.sharedobject;
import org.eclipse.ecf.core.identity.ID;
/**
* Replica shared object factory
*
*/
public interface IReplicaSharedObjectDescriptionFactory {
/**
* Create new ReplicaSharedObjectDescription instance for delivery to remote
* container identified by containerID parameter. The containerID parameter
* ID provided must not be null
*
* @param containerID
* @return ReplicaSharedObjectDescription. Must not return null, but rather
* a valid ReplicaSharedObjectDescription instance
*/
public ReplicaSharedObjectDescription createDescriptionForContainer(
ID containerID, ISharedObjectConfig config);
}