All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.gob.afirma.standalone.configurator.Configurator Maven / Gradle / Ivy

There is a newer version: 1.8.2
Show newest version
/* Copyright (C) 2011 [Gobierno de Espana]
 * This file is part of "Cliente @Firma".
 * "Cliente @Firma" is free software; you can redistribute it and/or modify it under the terms of:
 *   - the GNU General Public License as published by the Free Software Foundation;
 *     either version 2 of the License, or (at your option) any later version.
 *   - or The European Software License; either version 1.1 or (at your option) any later version.
 * You may contact the copyright holder at: [email protected]
 */

package es.gob.afirma.standalone.configurator;

import java.io.IOException;
import java.security.GeneralSecurityException;

/** Interfaz que define los métodos necesarios para configurar el sistema operativo tras la
 * instalación de AutoFirma. */
interface Configurator {

	/** Configura el entorno para la ejecución de AutoFirma.
	 * @param window Ventana padre con consola.
	 * @throws IOException Cuando no es posible cargar o manipular algún fichero de configuración o recursos.
	 * @throws ConfigurationException Cuando falla la generacion del certificados SSL.
	 * @throws GeneralSecurityException Cuando se produce un error al manipular los almacenes de certificados. */
	void configure(Console window) throws IOException, ConfigurationException, GeneralSecurityException;

	/** Desinstala los componentes necesarios del sistema. */
	void uninstall();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy