Map<String, Object> outputParam = new HashMap<String, Object>();
getProcessFacade().retrieveOutputParameters(token, outputParam);
// Since we cleared the 'delete process after completion' flag, we need to delete the process manually.
TokenContextService tcs = processServer.getTokenContextService();
tcs.deleteContext(token);
return (String) outputParam.get("ErrMsg");
}
protected ProcessFacade getProcessFacade()