device; } /** * Sets the involved device. * * @param VBODooraccessIntegrationDevice $device The involved device. * * @return self */ public function setDevice(VBODooraccessIntegrationDevice $device) { $this->device = $device; return $this; } /** * Returns the current retry data, if any. * * @return array */ public function getRetryData() { return $this->retryData; } /** * Sets the current retry data. * * @param array $data The data to set. * * @return self */ public function setRetryData(array $data) { $this->retryData = $data; return $this; } /** * Returns the current retry callback, if any. * * @return ?string */ public function getRetryCallback() { return $this->retryCallback; } /** * Sets the current retry callback. * * @param string $callback The callback to set. * * @return self */ public function setRetryCallback(string $callback) { $this->retryCallback = $callback; return $this; } }