summaryrefslogtreecommitdiffstats
path: root/lib/user/example.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/user/example.php')
-rw-r--r--lib/user/example.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/user/example.php b/lib/user/example.php
index 18bc6bce00d..7f3fd1b8578 100644
--- a/lib/user/example.php
+++ b/lib/user/example.php
@@ -40,17 +40,6 @@ abstract class OC_User_Example extends OC_User_Backend {
}
/**
- * @brief delete a user
- * @param $uid The username of the user to delete
- * @returns true/false
- *
- * Deletes a user
- */
- public function deleteUser( $uid ){
- return OC_USER_BACKEND_NOT_IMPLEMENTED;
- }
-
- /**
* @brief Set password
* @param $uid The username
* @param $password The new password
@@ -74,23 +63,4 @@ abstract class OC_User_Example extends OC_User_Backend {
public function checkPassword($uid, $password){
return OC_USER_BACKEND_NOT_IMPLEMENTED;
}
-
- /**
- * @brief Get a list of all users
- * @returns array with all uids
- *
- * Get a list of all users.
- */
- public function getUsers(){
- return OC_USER_BACKEND_NOT_IMPLEMENTED;
- }
-
- /**
- * @brief check if a user exists
- * @param string $uid the username
- * @return boolean
- */
- public function userExists($uid){
- return OC_USER_BACKEND_NOT_IMPLEMENTED;
- }
}