com.cleverpine.cptranslationsutil.service.contract.TranslationService 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.ExportDataDTO;
public interface TranslationService {
ExportDataDTO exportAllTranslationsByProjectAndPlatformNameOrThrow(String projectName, String platformName);
ExportDataDTO exportAllTranslationsByProjectAndPlatformNameOrLogError(String projectName, String platformName);
ExportDataDTO exportAllTranslationsWithDefaultsByProjectAndPlatformNameOrThrow(String projectName, String platformName);
ExportDataDTO exportAllTranslationsWithDefaultsByProjectAndPlatformNameOrLogError(String projectName, String platformName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy