/*
* Copyright (c) 2018 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/.
*/
using System;
namespace SafeExamBrowser.Contracts.Configuration
{
///
/// The repository which controls the loading and initializing of configuration data.
///
public interface IConfigurationRepository
{
///
/// Retrieves the current session data, i.e. the last one which was initialized. If no session has been initialized yet, this
/// property will be null!
///
ISessionData CurrentSession { get; }
///
/// Retrieves the current settings, i.e. the last ones which were loaded. If no settings have been loaded yet, this property will
/// be null!
///
Settings.Settings CurrentSettings { get; }
///
/// The locator of the configuration to be used when reconfiguring the application.
///
string ReconfigurationUrl { get; set; }
///
/// The runtime information for the currently running application instance.
///
RuntimeInfo RuntimeInfo { get; }
///
/// Builds a configuration for the client component, given the currently loaded settings, session and runtime information.
///
ClientConfiguration BuildClientConfiguration();
///
/// Initializes all relevant data for a new session.
///
ISessionData InitializeSessionData();
///
/// Attempts to load settings from the specified path.
///
/// Thrown if the given path cannot be resolved to a settings file.
Settings.Settings LoadSettings(Uri path);
///
/// Loads the default settings.
///
Settings.Settings LoadDefaultSettings();
}
}