public ProcessRequest createRequest(String processId) throws PasswordManagementException {
    PasswordManagementProcess p = this.runningProcesses.get(processId);
    if (p == null) throw new PasswordManagementException("Invalid proces ID : " + processId);

    return p.createRequest();
  }