IUserManager Protocol Reference
| Conforms to | NSObject | 
| Declared in | IUserManager.h | 
Tasks
- 
	
		
– containsUserName:Checks if a specific User name exists in the local User list
required method - 
	
		
– containsUserId:Checks if a specific User id exists in the local User list
required method - 
	
		
– containsUser:Checks if a specific User object exists in the local User list
required method - 
	
		
– getUserByName:Get a User object from its name
required method - 
	
		
– getUserById:Get a User object from its id
required method - 
	
		
– userCountGet the total number of Users
required method - 
	
		
– getUserListGet the full list of Users
required method 
Instance Methods
containsUser:
Checks if a specific User object exists in the local User list
- (BOOL)containsUser:(id<User>)userDiscussion
Checks if a specific User object exists in the local User list
Declared In
IUserManager.hcontainsUserId:
Checks if a specific User id exists in the local User list
- (BOOL)containsUserId:(NSInteger)userIdDiscussion
Checks if a specific User id exists in the local User list
Declared In
IUserManager.hcontainsUserName:
Checks if a specific User name exists in the local User list
- (BOOL)containsUserName:(NSString *)userNameDiscussion
Checks if a specific User name exists in the local User list
Declared In
IUserManager.hgetUserById:
Get a User object from its id
- (id<User>)getUserById:(NSInteger)userIdDiscussion
Get a User object from its id
Declared In
IUserManager.hgetUserByName:
Get a User object from its name
- (id<User>)getUserByName:(NSString *)userNameDiscussion
Get a User object from its name
Declared In
IUserManager.h