maxListIds = config('oai.max.listidentifiers'); $this->maxListRecs = config('oai.max.listrecords'); $this->pathTokens = config('app.workspacePath') . DIRECTORY_SEPARATOR .'tmp' . DIRECTORY_SEPARATOR . 'resumption'; } /** * Return temporary path for resumption tokens. * * @return string Path. */ public function getResumptionTokenPath() { return $this->pathTokens; } /** * Return maximum number of listable identifiers per request. * * @return int Maximum number of listable identifiers per request. */ public function getMaxListIdentifiers() { return $this->maxListIds; } /** * Return maximum number of listable records per request. * * @return int Maximum number of listable records per request. */ public function getMaxListRecords() { return $this->maxListRecs; } }