/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
namespace SafeExamBrowser.Settings.Service
{
///
/// Defines all configuration options for the service application component.
///
public class ServiceSettings
{
///
/// Determines whether desktop notifications of Google Chrome should be deactivated.
///
public bool DisableChromeNotifications { get; set; }
///
/// Determines whether the user can access the ease of access options on the security screen.
///
public bool DisableEaseOfAccessOptions { get; set; }
///
/// Determines whether the user can access the network options on the security screen.
///
public bool DisableNetworkOptions { get; set; }
///
/// Determines whether the user can change the password for a user account via the security screen.
///
public bool DisablePasswordChange { get; set; }
///
/// Determines whether the user can access the power options on the security screen.
///
public bool DisablePowerOptions { get; set; }
///
/// Determines whether remote desktop connections should be deactivated.
///
public bool DisableRemoteConnections { get; set; }
///
/// Determines whether the user can sign out of their account via the security screen.
///
public bool DisableSignout { get; set; }
///
/// Determines whether the user can access the task manager of Windows.
///
public bool DisableTaskManager { get; set; }
///
/// Determines whether the user can lock the computer via the security screen.
///
public bool DisableUserLock { get; set; }
///
/// Determines whether the user can switch to another user account via the security screen.
///
public bool DisableUserSwitch { get; set; }
///
/// Determines whether the user interface overlay for VMware clients should be deactivated.
///
public bool DisableVmwareOverlay { get; set; }
///
/// Determines whether Windows Update should be deactivated.
///
public bool DisableWindowsUpdate { get; set; }
///
/// The active policy for the service component.
///
public ServicePolicy Policy { get; set; }
}
}