GM6000 Digital Heater Controller Branch: main
SDX-1330
Security.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Security_h_
2#define Cpl_TShell_Security_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16
17///
18namespace Cpl {
19///
20namespace TShell {
21
22/** This abstract defines the interface for validating a 'user login' for
23 TShell.
24
25 NOTE: This class does NOT define any thread safety semantics - it is the
26 responsibility of the Application to provide thread safety if it is
27 needed.
28 */
29
31{
32public:
33 /// Permissions levels
35 ePUBLIC = 0, //!< No permissions, i.e. the 'users' has no privilege and/or the command requires NO permission to be executed
36 eUSER = 1, //!< Lowest permission setting, i.e. a 'user' can only executes commands that have eUSER or ePUBLIC permission levels
37 eSYSTEM = 2, //!< Higher permission setting, i.e. a 'user' can only executes commands that have eSYSTEM, eUSER or ePUBLIC permission levels
38 eADMIN = 3 //!< Highest permission setting, i.e. a 'user' can executes any/all commands
39 };
40
41
42public:
43 /** This method returns the Permission level for the specified user/password.
44 If the user-name or password are not valid - then ePUBLIC is returned.
45 */
46 virtual Permission_T validateCredentials( const char* username, const char* password ) noexcept = 0;
47
48public:
49 /// Virtual destructor
50 virtual ~Security(){}
51
52};
53
54
55}; // end namespaces
56};
57#endif // end header latch
This abstract defines the interface for validating a 'user login' for TShell.
Definition Security.h:31
Permission_T
Permissions levels.
Definition Security.h:34
@ eADMIN
Highest permission setting, i.e.
Definition Security.h:38
@ ePUBLIC
No permissions, i.e.
Definition Security.h:35
@ eSYSTEM
Higher permission setting, i.e.
Definition Security.h:37
@ eUSER
Lowest permission setting, i.e.
Definition Security.h:36
virtual ~Security()
Virtual destructor.
Definition Security.h:50
virtual Permission_T validateCredentials(const char *username, const char *password) noexcept=0
This method returns the Permission level for the specified user/password.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20