There is no spoon
UE3:IWebAdminAuth (UT3)
From Unreal Wiki, The Unreal Engine Documentation Site
| Interface >> IWebAdminAuth |
Contents |
- Package:
- WebAdmin
- Known implementing classes:
- BasicWebAdminAuth
| This is an auto-generated page and may need human attention. Please remove this tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
WebAdmin authentication interface. An implementation of this interface is used to create IWebAdminUser instances.
Copyright 2008 Epic Games, Inc. All Rights Reserved
Author: Michiel 'elmuerte' Hendriks
[edit] Instance functions
[edit] authenticate
Try to log in a user with the provided credentials
Parameters:
- username -
- password -
- errorMsg - can be set to a friendly error message or reason why authentication failed
Returns:
- none when authentication failed, otherwise the created user instance
[edit] cleanup
Cleanup (prepare for being destroyed)
[edit] init
Initialize the authentication handler
[edit] logout
Logout the given user. A user does not explicitly log out.
Returns:
- true when the user was succesfully logged out.
[edit] validate
Like authenticate(...) except that the user is not explicitly logged in (or created). This will be used to re-validate an already existing user. For example in the case a time out was triggered and the user needs to re-enter his/her password.
Parameters:
- username -
- password -
- errorMsg - can be set to a friendly error message or reason why authentication failed
[edit] validateUser
Validate the given user. This will be used to check if the IWebAdminUser is still valid, for example to check if the user wasn't deleted in the mean while.
Parameters:
- user - the user instance to validate
- errorMsg - can be set to a friendly error message or reason why authentication failed
