1 17 package javax.jbi.component; 18 19 import javax.jbi.management.DeploymentException; 20 21 public interface ServiceUnitManager 22 { 23 String deploy(String serviceUnitName, String serviceUnitRootPath) 24 throws DeploymentException; 25 26 void init(String serviceUnitName, String serviceUnitRootPath) 27 throws DeploymentException; 28 29 void start(String serviceUnitName) 30 throws DeploymentException; 31 32 void stop(String serviceUnitName) 33 throws DeploymentException; 34 35 void shutDown(String serviceUnitName) 36 throws DeploymentException; 37 38 String undeploy(String serviceUnitName, String serviceUnitRootPath) 39 throws DeploymentException; 40 } 41 | Popular Tags |