aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Db/Direct.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav/lib/Db/Direct.php')
-rw-r--r--apps/dav/lib/Db/Direct.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/apps/dav/lib/Db/Direct.php b/apps/dav/lib/Db/Direct.php
new file mode 100644
index 00000000000..4e4a12d225f
--- /dev/null
+++ b/apps/dav/lib/Db/Direct.php
@@ -0,0 +1,43 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\DAV\Db;
+
+use OCP\AppFramework\Db\Entity;
+use OCP\DB\Types;
+
+/**
+ * @method string getUserId()
+ * @method void setUserId(string $userId)
+ * @method int getFileId()
+ * @method void setFileId(int $fileId)
+ * @method string getToken()
+ * @method void setToken(string $token)
+ * @method int getExpiration()
+ * @method void setExpiration(int $expiration)
+ */
+class Direct extends Entity {
+ /** @var string */
+ protected $userId;
+
+ /** @var int */
+ protected $fileId;
+
+ /** @var string */
+ protected $token;
+
+ /** @var int */
+ protected $expiration;
+
+ public function __construct() {
+ $this->addType('userId', Types::STRING);
+ $this->addType('fileId', Types::INTEGER);
+ $this->addType('token', Types::STRING);
+ $this->addType('expiration', Types::INTEGER);
+ }
+}