Package org.mule.registry

Examples of org.mule.registry.Assembly.undeploy()


  public String undeploy(String saName) throws Exception {
    Assembly assembly = this.registry.getAssembly(saName);
    if (assembly == null) {
      throw new JBIException("Assembly not deployed: " + saName);
    }
    return assembly.undeploy();
  }

  public String[] getDeployedServiceUnitList(String componentName)
      throws Exception {
    RegistryComponent component = this.registry.getComponent(componentName);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.