Welcome to mirror list, hosted at ThFree Co, Russian Federation.

User.php « Identity « Common « OpenCloud « lib « php-opencloud « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e3862d1750cb09f0b6a81840c8106cb196c85aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
 * @copyright 2012-2013 Rackspace Hosting, Inc.
 * See COPYING for licensing information
 * @package phpOpenCloud
 * @version 1.5.9
 * @author Glen Campbell <glen.campbell@rackspace.com>
 * @author Jamie Hannaford <jamie.hannaford@rackspace.co.uk>
 */

/**
 * Represents a sub-user in Keystone.
 *
 * @link http://docs.rackspace.com/auth/api/v2.0/auth-client-devguide/content/User_Calls.html
 * 
 * @codeCoverageIgnore
 */
class User extends PersistentObject
{
    
    public static function factory($info)
    {
        $user = new self;
    }
    
    /**
     * Return detailed information about a specific user, by either user name or user ID.
     * @param int|string $info
     */
    public function get($info)
    {
        if (is_integer($info)) {
            
        } elseif (is_string($info)) {
            
        } else {
            throw new Exception\IdentityException(sprintf(
                'A string-based username or an integer-based user ID is valid'
            ));
        }
    }
    
    public function create()
    {
        
    }
    
    public function update()
    {
        
    }
    
    public function delete()
    {
        
    }
    
    public function listAllCredentials()
    {
        
    }
    
    public function getCredentials()
    {
        
    }
    
    public function resetApiKey()
    {
        
    }
    
}