1 /* $Id: CNDeplDock.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */2 package SOFA.Connector.Boot;3 4 /** Connector interface for depldock.5 *6 * @author Petr Hnetynka7 */8 public interface CNDeplDock {9 SOFA.SOFAnode.Run.Deployment.TechnologyDescriptor[] describeUnderlyingEnvironment() ;10 SOFA.Connector.Reference instantiate(SOFA.SOFAnode.Run.Deployment.DeploymentDescriptor dd, String name) throws SOFA.SOFAnode.Run.Deployment.DeploymentException;11 12 String [] namesOfAllRunningComponents();13 String [] namesOfAllRunningApplications();14 SOFA.Connector.Reference getReference(String name) throws SOFA.SOFAnode.Run.Deployment.DeploymentException;15 void removeComponent(String name) throws SOFA.SOFAnode.Run.Deployment.DeploymentException;16 }17