summaryrefslogtreecommitdiffstats
path: root/lib/public/Remote/ICredentials.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2021-06-28 16:36:32 +0200
committerLukas Reschke <lukas@statuscode.ch>2021-06-28 16:36:32 +0200
commita423aae522b1c465788121581513593f31d3aefa (patch)
tree3addcd6dfd706904ed36f2aa3e6e306499c8c703 /lib/public/Remote/ICredentials.php
parentac97873a179d9383c682d10e88c750c3b6a72f79 (diff)
downloadnextcloud-server-a423aae522b1c465788121581513593f31d3aefa.tar.gz
nextcloud-server-a423aae522b1c465788121581513593f31d3aefa.zip
Deprecate OCP\Remote
This is unused. Fixes https://github.com/nextcloud/server/issues/25780 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib/public/Remote/ICredentials.php')
-rw-r--r--lib/public/Remote/ICredentials.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/public/Remote/ICredentials.php b/lib/public/Remote/ICredentials.php
index bbf753f998a..db8fa9fa109 100644
--- a/lib/public/Remote/ICredentials.php
+++ b/lib/public/Remote/ICredentials.php
@@ -26,12 +26,14 @@ namespace OCP\Remote;
* The credentials for a remote user
*
* @since 13.0.0
+ * @deprecated 23.0.0
*/
interface ICredentials {
/**
* @return string
*
* @since 13.0.0
+ * @deprecated 23.0.0
*/
public function getUsername();
@@ -39,6 +41,7 @@ interface ICredentials {
* @return string
*
* @since 13.0.0
+ * @deprecated 23.0.0
*/
public function getPassword();
}