fr.ird.observe.services.service.referential.SynchronizeService Maven / Gradle / Ivy
Show all versions of toolkit-service Show documentation
package fr.ird.observe.services.service.referential;
/*-
* #%L
* ObServe Toolkit :: Service
* %%
* Copyright (C) 2017 - 2021 Ultreia.io
* %%
* This program 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 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* .
* #L%
*/
import fr.ird.observe.dto.ToolkitIdLabel;
import fr.ird.observe.dto.referential.ReferentialDto;
import fr.ird.observe.security.Permission;
import fr.ird.observe.services.service.ObserveService;
import fr.ird.observe.services.spi.MethodCredential;
import fr.ird.observe.spi.referential.synchro.OneSideSqlRequest;
import fr.ird.observe.spi.referential.synchro.OneSideSqlResult;
import io.ultreia.java4all.http.spi.Post;
import io.ultreia.java4all.http.spi.Write;
import org.nuiton.topia.persistence.script.TopiaSqlScript;
import java.util.Set;
/**
* Unify referential synchronize service. Replace both {@code legacy} and {@code ng} version.
*
* This new version is based on the {@code ng} version ({@code legacy} version was just another way to only produce
* for one side).
*
* Created on 15/07/2021.
*
* @author Tony Chemit - [email protected]
* @since 5.0.39
*/
public interface SynchronizeService extends ObserveService {
String SIMPLE_REFERENTIAL_SYNCHRONISATION = "SIMPLE_REFERENTIAL_SYNCHRONISATION";
String ADVANCED_REFERENTIAL_SYNCHRONISATION = "ADVANCED_REFERENTIAL_SYNCHRONISATION";
/**
* From the given {@code request} which defines all sql requests that should be produced from this side, generate
* the sql code and return them.
*
* @param request one side request producer
* @return all sql requests to be generated from this side
*/
// Note : sur cette méthode aucun droit métier à poser, les actions sont légitimes
@Post(useMultiPartForm = true)
OneSideSqlResult produceSqlResult(OneSideSqlRequest request);
/**
* Apply the given {@code script} on this side and update lastUpdateDates.
*
* @param script the sql request to execute on this side
* @param lastUpdateDateKey the lastUpdateDate key
*/
// Note : sur cette méthode aucun droit métier à poser, les actions sont légitimes
@Write
@Post(useMultiPartForm = true)
void applySql(TopiaSqlScript script, String lastUpdateDateKey);
/**
* Pour un référentiel d'un type donné (son nom est donné), détecte les référentiels dont
* les identifiants sont passés en paramètres qui sont réellement utilisés dans la source locale.
*
* @param referentialName le nom du référentiel
* @param ids les identifiants du référentiel dont on recherche le nombre d'utilisation
* @return les identifiants des référentiels passés en paramètres qui sont réellement utilisés dans la source locale.
*/
@MethodCredential(Permission.READ_REFERENTIAL)
@Post(useMultiPartForm = true)
Set filterIdsUsed(Class extends ReferentialDto> referentialName, Set ids);
/**
* Pour récupérer les références sur les référentiels d'un certain type à supprimer,
* cet ensemble servira à les afficher dans l'interface graphique pour effectuer le remplacement.
*
* @param referentialName le nom du référentiel à récupérer
* @param ids les identifiants des référentiels à supprimer
* @return l'ensemble des références de référentiel à supprimer.
*/
@MethodCredential(Permission.READ_REFERENTIAL)
@Post(useMultiPartForm = true)
Set getReferentialToDelete(Class extends ReferentialDto> referentialName, Set ids);
}