use of org.wso2.carbon.humantask.core.integration.CallBackServiceImpl in project carbon-business-process by wso2.
the class HumanTaskStore method createCallBackService.
private void createCallBackService(TaskConfiguration taskConf) throws HumanTaskDeploymentException {
EndpointConfiguration endpointConfig = taskConf.getEndpointConfiguration(taskConf.getCallbackServiceName().getLocalPart(), taskConf.getCallbackPortName());
CallBackServiceImpl callbackService = new CallBackServiceImpl(tenantId, taskConf.getCallbackServiceName(), taskConf.getCallbackPortName(), taskConf.getName(), taskConf.getResponseWSDL(), taskConf.getResponseOperation(), endpointConfig);
taskConf.setCallBackService(callbackService);
}
Aggregations