1 17 package org.apache.servicemix.common; 18 19 import javax.jbi.management.DeploymentException; 20 21 28 public interface Deployer { 29 30 37 boolean canDeploy(String serviceUnitName, 38 String serviceUnitRootPath); 39 40 49 ServiceUnit deploy(String serviceUnitName, 50 String serviceUnitRootPath) throws DeploymentException; 51 52 56 void undeploy(ServiceUnit su) throws DeploymentException; 57 58 } 59 | Popular Tags |