package eu.artemis.shield.composition.compositionmanager;
import java.util.HashMap;
import java.util.Hashtable;
/**
* This it the main interface to manage the User Agent service discovery.
* This interface supplies a method to retreive the XML files describing the service composition
*
* @author <a>Davide Migliacci</a>
*
* @todo ...
*/
public interface ICompositionManager {
public void runBundle ( Hashtable bundle_properties, int level, HashMap ht );
}
|