aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Remote/Credentials.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Remote/Credentials.php')
-rw-r--r--lib/private/Remote/Credentials.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/private/Remote/Credentials.php b/lib/private/Remote/Credentials.php
new file mode 100644
index 00000000000..7f1ffaa727c
--- /dev/null
+++ b/lib/private/Remote/Credentials.php
@@ -0,0 +1,39 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OC\Remote;
+
+use OCP\Remote\ICredentials;
+
+class Credentials implements ICredentials {
+ /** @var string */
+ private $user;
+ /** @var string */
+ private $password;
+
+ /**
+ * @param string $user
+ * @param string $password
+ */
+ public function __construct($user, $password) {
+ $this->user = $user;
+ $this->password = $password;
+ }
+
+ /**
+ * @return string
+ */
+ public function getUsername() {
+ return $this->user;
+ }
+
+ /**
+ * @return string
+ */
+ public function getPassword() {
+ return $this->password;
+ }
+}