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

com.cleverpine.cptranslationsutil.service.contract.TranslationServiceClient Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
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