ClientSecurityPolicy.h
Go to the documentation of this file.
1 // Copyright (c) 2018 Digital Barriers
4 
17 #pragma once
18 
19 #include "EdgeVisSDK.h"
20 #include "Pimpl.h"
21 #include <string>
22 
23 namespace EdgeVisDecoderSDK
24 {
25  class ClientSecurityPolicyImpl;
26 
27  class ClientSecurityPolicy : public EdgeVisSDKPimpl<ClientSecurityPolicyImpl>
28  {
29  public:
30  DB_EDGEVIS_SDK ClientSecurityPolicy();
31 
32  EdgeVisSDKPimplWeakConstructor(ClientSecurityPolicy);
33  DB_EDGEVIS_SDK virtual ~ClientSecurityPolicy();
34 
40  DB_EDGEVIS_SDK bool CanSaveUsername() const;
41 
48  DB_EDGEVIS_SDK int32_t AccountLockOutOnFailedLogin() const;
49 
55  DB_EDGEVIS_SDK bool CanSavePasswords() const;
56 
62  DB_EDGEVIS_SDK bool CanSaveServerList() const;
63 
70  DB_EDGEVIS_SDK int32_t ViewerTimeout() const;
71 
78  DB_EDGEVIS_SDK bool SingleSignInEnabled() const;
79  };
80 }
DB_EDGEVIS_SDK bool CanSavePasswords() const
Determine if the client security policy allows this client application to save passwords.
DB_EDGEVIS_SDK int32_t ViewerTimeout() const
Determine the viewer timeout value in seconds configured for this user.
DB_EDGEVIS_SDK bool CanSaveServerList() const
Determine if the client security policy allows this client application to save the server details...
DB_EDGEVIS_SDK bool SingleSignInEnabled() const
Determine if the client security policy allows this user to sign in to multiple clients on different ...
Describes the client security policy set at the server.
Definition: ClientSecurityPolicy.h:27
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK int32_t AccountLockOutOnFailedLogin() const
Determine the number of failed login attempts that will result in the account being locked out...
DB_EDGEVIS_SDK bool CanSaveUsername() const
Determine if the client security policy allows the client application to save the username...