log.info("Initialized Human Task Deployer for Tenant:" + MultitenantUtils.getTenantId(configurationContext));
}
public void deploy(DeploymentFileData deploymentFileData) throws DeploymentException {
try {
HumanTaskDeploymentUnit htDu =
HumanTaskDeploymentUnitFactory.createHumanTaskDeploymentUnitFromArchive(
deploymentFileData.getFile());
htStore.deploy(htDu);
} catch (HumanTaskStoreException e) {
String errMsg = "Human Task archive " + deploymentFileData.getName() + " deployment failed.";