es.gob.afirma.standalone.configurator.Configurator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of afirma-ui-simpleafirma-configurator Show documentation
Show all versions of afirma-ui-simpleafirma-configurator Show documentation
Aplicacion auxiliar de instalacion de AutoFirma
/* 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();
}