com.cleverpine.cptranslationsutil.service.contract.TranslationServiceClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cp-translations-util Show documentation
Show all versions of cp-translations-util Show documentation
Simple util library for Spring Framework projects
package com.cleverpine.cptranslationsutil.service.contract;
import com.cleverpine.cptranslationsutil.dto.ExportResponseDTO;
import reactor.core.publisher.Mono;
public interface TranslationServiceClient {
Mono exportAllTranslationsByProjectNameAndPlatformNameOrRetryAndThrow(
String projectName, String platformName
);
Mono exportAllTranslationsByProjectNameAndPlatformNameOrLogError(
String projectName, String platformName
);
Mono exportAllTranslationsAndDefaultsByProjectNameAndPlatformNameOrRetryAndThrow(
String projectName, String platformName
);
Mono exportAllTranslationsAndDefaultsByProjectNameAndPlatformNameOrLogError(
String projectName, String platformName
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy