![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract defines the interface for validating a 'user login' for TShell. More...
This abstract defines the interface for validating a 'user login' for TShell.
NOTE: This class does NOT define any thread safety semantics - it is the responsibility of the Application to provide thread safety if it is needed.
#include <Security.h>
Public Types | |
enum | Permission_T { ePUBLIC = 0 , eUSER = 1 , eSYSTEM = 2 , eADMIN = 3 } |
Permissions levels. More... | |
Public Member Functions | |
virtual Permission_T | validateCredentials (const char *username, const char *password) noexcept=0 |
This method returns the Permission level for the specified user/password. | |
virtual | ~Security () |
Virtual destructor. | |
Permissions levels.
|
inlinevirtual |
Virtual destructor.
|
pure virtualnoexcept |
This method returns the Permission level for the specified user/password.
If the user-name or password are not valid - then ePUBLIC is returned.
Implemented in Ajax::Main::TShellSecurity, and Cpl::TShell::SecurityNull.