/**
  * Retrive all ids for collection
  *
  * @return array
  */
 public function getAllIds()
 {
     if (is_null($this->_itemIds)) {
         $this->_itemIds = parent::getAllIds();
     }
     return $this->_itemIds;
 }