/*
* 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/.
*/
using SafeExamBrowser.Contracts.UserInterface.Shell;
namespace SafeExamBrowser.Contracts.Applications
{
///
/// Controls the lifetime and functionality of a (third-party) application which can be accessed via the .
///
public interface IApplicationController
{
///
/// Performs any initialization work, if necessary.
///
void Initialize();
///
/// Registers an application control for this application.
///
void RegisterApplicationControl(IApplicationControl control);
///
/// Starts the execution of the application.
///
void Start();
///
/// Performs any termination work, e.g. releasing of used resources.
///
void Terminate();
}
}