/**
  * Show IdP logins for one SP.
  *
  * @see BACKLOG-21
  */
 public function showIdpLoginsBySpAction()
 {
     $entityId = $this->getRequest()->getParam('eid', false);
     if (!$entityId) {
         throw new Exception('No entity ID provided!');
     }
     $this->_addExportParameter('eid', $entityId);
     $this->_searchParams->addSearchParam('entity_id', $entityId);
     $service = new EngineBlock_Service_LoginLog();
     $results = $service->searchIdpLoginsBySp($this->_searchParams);
     $this->view->entityId = $entityId;
     $this->view->ResultSet = $results->getResults();
 }