blob: 6c3068c56ecd8337e60ccd78e1f25dd86eb47d63 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 Peter Nehrer and Composent, Inc.
* 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:
* Peter Nehrer - initial API and implementation
*******************************************************************************/
package org.eclipse.ecf.sdo;
/**
* Interface used by service implementations to notify publishing applications
* of the publication status.
*
* @author pnehrer
*/
public interface IPublicationCallback {
/**
* Notifies implementor that the give data graph has been successfully
* published.
*
* @param graph
* data graph that has been published
*/
void dataGraphPublished(ISharedDataGraph graph);
}