Addon startup

Some addons need to execute some code on startup. To achieve this, the startup must implement and declare a SpringService that implements the es.caib.seycon.ng.servei.ApplicationBootService interface.

This interface has two methods that will be called after synchronization server or console startup :

public interface ApplicationBootService {
    /**
     * Operation syncServerBoot - synchronization server engine boot
     */
    void syncServerBoot()
            throws es.caib.seycon.ng.exception.InternalErrorException;
    /**
     * Operation consoleBoot - console boot
     */
    void consoleBoot()
            throws es.caib.seycon.ng.exception.InternalErrorException;
}

Revision #2
Created 1 June 2021 06:56:02 by pgarcia@soffid.com
Updated 1 June 2021 09:31:45 by pgarcia@soffid.com