2024-01-03 16:54:13 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OAI-PMH 2.0 Data Provider
|
2024-01-22 15:06:07 +01:00
|
|
|
* Copyright (C) 2024 Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
|
2024-01-03 16:54:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2024-01-22 15:06:07 +01:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2024-01-03 16:54:13 +01:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2024-01-22 15:06:07 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2024-01-03 16:54:13 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2024-01-08 22:37:09 +01:00
|
|
|
namespace OCC\OaiPmh2;
|
2024-01-03 16:54:13 +01:00
|
|
|
|
2024-09-30 19:37:29 +02:00
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
2024-01-08 22:37:09 +01:00
|
|
|
use OCC\OaiPmh2\Entity\Token;
|
2024-01-03 16:54:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A database result set with optional resumption token.
|
|
|
|
*
|
|
|
|
* @author Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
|
2024-07-13 18:49:54 +02:00
|
|
|
* @package OAIPMH2
|
2024-01-03 16:54:13 +01:00
|
|
|
*
|
2024-09-30 19:37:29 +02:00
|
|
|
* @template TEntity of Entity
|
|
|
|
* @extends ArrayCollection<string, TEntity>
|
2024-01-03 16:54:13 +01:00
|
|
|
*/
|
2024-09-30 19:37:29 +02:00
|
|
|
final class ResultSet extends ArrayCollection
|
2024-01-03 16:54:13 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* This holds the optional resumption token.
|
|
|
|
*/
|
2024-09-30 19:37:29 +02:00
|
|
|
private ?Token $resumptionToken;
|
2024-01-03 16:54:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the resumption token.
|
|
|
|
*
|
|
|
|
* @return ?Token The resumption token or NULL if not applicable
|
|
|
|
*/
|
|
|
|
public function getResumptionToken(): ?Token
|
|
|
|
{
|
|
|
|
return $this->resumptionToken;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the resumption token.
|
|
|
|
*
|
|
|
|
* @param Token $token The resumption token
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setResumptionToken(Token $token): void
|
|
|
|
{
|
|
|
|
$this->resumptionToken = $token;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create new result set.
|
|
|
|
*
|
2024-09-30 19:37:29 +02:00
|
|
|
* @param array<string, TEntity> $elements Array of entities
|
|
|
|
* @param Token $token Optional resumption token
|
2024-01-03 16:54:13 +01:00
|
|
|
*/
|
2024-09-30 19:37:29 +02:00
|
|
|
public function __construct(array $elements = [], Token $token = null)
|
2024-01-03 16:54:13 +01:00
|
|
|
{
|
2024-10-14 14:51:42 +02:00
|
|
|
parent::__construct($elements);
|
2024-09-30 19:37:29 +02:00
|
|
|
$this->resumptionToken = $token;
|
2024-01-03 16:54:13 +01:00
|
|
|
}
|
|
|
|
}
|