seb-win-refactoring/SafeExamBrowser.Contracts/Configuration/Settings/ServiceSettings.cs

82 lines
2.6 KiB
C#
Raw Normal View History

/*
* 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.Contracts.Configuration.Settings
{
/// <summary>
/// Defines all configuration options for the service application component.
/// </summary>
public class ServiceSettings
{
/// <summary>
/// Determines whether the user may access the ease of access options on the security screen.
/// </summary>
public bool AllowEaseOfAccessOptions { get; set; }
/// <summary>
/// Determines whether the user may access the network options on the security screen.
/// </summary>
public bool AllowNetworkOptions { get; set; }
/// <summary>
/// Determines whether the user may change the password for a user account via the security screen.
/// </summary>
public bool AllowPasswordChange { get; set; }
/// <summary>
/// Determines whether the user may access the power options on the security screen.
/// </summary>
public bool AllowPowerOptions { get; set; }
/// <summary>
/// Determines whether the user may sign out of their account via the security screen.
/// </summary>
public bool AllowSignout { get; set; }
/// <summary>
/// Determines whether the user may start the task manager via the security screen.
/// </summary>
public bool AllowTaskManager { get; set; }
/// <summary>
/// Determines whether the user may lock the computer via the security screen.
/// </summary>
public bool AllowUserLock { get; set; }
/// <summary>
/// Determines whether the user may switch to another user account via the security screen.
/// </summary>
public bool AllowUserSwitch { get; set; }
/// <summary>
/// Determines whether desktop notifications of Google Chrome should be deactivated.
/// </summary>
public bool DisableChromeNotifications { get; set; }
/// <summary>
/// Determines whether remote desktop connections should be deactivated.
/// </summary>
public bool DisableRemoteConnections { get; set; }
/// <summary>
/// Determines whether the user interface overlay for VMware clients should be deactivated.
/// </summary>
public bool DisableVmwareOverlay { get; set; }
/// <summary>
/// Determines whether Windows Update should be deactivated.
/// </summary>
public bool DisableWindowsUpdate { get; set; }
/// <summary>
/// The active policy for the service component.
/// </summary>
public ServicePolicy Policy { get; set; }
}
}