summaryrefslogtreecommitdiffstats
path: root/lib/public/LDAP
diff options
context:
space:
mode:
authorroot <roger.szabo@web.de>2016-07-27 15:10:35 +0800
committerroot <roger.szabo@web.de>2016-07-27 15:10:35 +0800
commit32fb6beac3fe9b202ed4a52f3a2bfede72cbc19b (patch)
tree80a947f8dca98263368c050789d1abd40c53641c /lib/public/LDAP
parent1fb080df2bd105ece36f32dba41f401167637a8b (diff)
downloadnextcloud-server-32fb6beac3fe9b202ed4a52f3a2bfede72cbc19b.tar.gz
nextcloud-server-32fb6beac3fe9b202ed4a52f3a2bfede72cbc19b.zip
final changes
Diffstat (limited to 'lib/public/LDAP')
-rw-r--r--lib/public/LDAP/IDeletionFlagSupport.php5
-rw-r--r--lib/public/LDAP/ILDAPProvider.php17
-rw-r--r--lib/public/LDAP/ILDAPProviderFactory.php1
3 files changed, 10 insertions, 13 deletions
diff --git a/lib/public/LDAP/IDeletionFlagSupport.php b/lib/public/LDAP/IDeletionFlagSupport.php
index ca272d7aa79..60ec82f662d 100644
--- a/lib/public/LDAP/IDeletionFlagSupport.php
+++ b/lib/public/LDAP/IDeletionFlagSupport.php
@@ -2,7 +2,6 @@
/**
* @author Roger Szabo <roger.szabo@web.de>
*
- * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
@@ -30,14 +29,14 @@ namespace OCP\LDAP;
interface IDeletionFlagSupport {
/**
* Flag record for deletion.
- * @param string $uid ownCloud user id
+ * @param string $uid user id
* @since 9.2.0
*/
public function flagRecord($uid);
/**
* Unflag record for deletion.
- * @param string $uid ownCloud user id
+ * @param string $uid user id
* @since 9.2.0
*/
public function unflagRecord($uid);
diff --git a/lib/public/LDAP/ILDAPProvider.php b/lib/public/LDAP/ILDAPProvider.php
index 44f7d88c946..576032cfaaf 100644
--- a/lib/public/LDAP/ILDAPProvider.php
+++ b/lib/public/LDAP/ILDAPProvider.php
@@ -2,7 +2,6 @@
/**
* @author Roger Szabo <roger.szabo@web.de>
*
- * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
@@ -29,17 +28,17 @@ namespace OCP\LDAP;
*/
interface ILDAPProvider {
/**
- * Translate an ownCloud username to LDAP DN.
- * @param string $uid ownCloud user id
+ * Translate a user id to LDAP DN.
+ * @param string $uid user id
* @return string
* @since 9.2.0
*/
public function getUserDN($uid);
/**
- * Translate a LDAP DN to an ownCloud user name.
+ * Translate a LDAP DN to an internal user name.
* @param string $dn LDAP DN
- * @return string with the ownCloud user name
+ * @return string with the internal user name
* @throws \Exception if translation was unsuccessful
* @since 9.2.0
*/
@@ -63,7 +62,7 @@ interface ILDAPProvider {
/**
* Return a new LDAP connection resource for the specified user.
- * @param string $uid ownCloud user id
+ * @param string $uid user id
* @return resource of the LDAP connection
* @since 9.2.0
*/
@@ -71,7 +70,7 @@ interface ILDAPProvider {
/**
* Get the LDAP base for users.
- * @param string $uid ownCloud user id
+ * @param string $uid user id
* @return string the base for users
* @throws \Exception if user id was not found in LDAP
* @since 9.2.0
@@ -80,7 +79,7 @@ interface ILDAPProvider {
/**
* Get the LDAP base for groups.
- * @param string $uid ownCloud user id
+ * @param string $uid user id
* @return string the base for groups
* @throws \Exception if user id was not found in LDAP
* @since 9.2.0
@@ -97,7 +96,7 @@ interface ILDAPProvider {
/**
* Clear the cache if a cache is used, otherwise do nothing.
- * @param string $uid ownCloud user id
+ * @param string $uid user id
* @since 9.2.0
*/
public function clearCache($uid);
diff --git a/lib/public/LDAP/ILDAPProviderFactory.php b/lib/public/LDAP/ILDAPProviderFactory.php
index 3e1242e33db..6204f73b072 100644
--- a/lib/public/LDAP/ILDAPProviderFactory.php
+++ b/lib/public/LDAP/ILDAPProviderFactory.php
@@ -2,7 +2,6 @@
/**
* @author Roger Szabo <roger.szabo@web.de>
*
- * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify