7 lines
162 B
Java
Raw Normal View History

2019-06-05 01:44:57 +03:00
package com.baeldung.autoservice;
import java.util.Locale;
2019-06-16 09:31:29 +03:00
public interface TranslationService {
2019-06-05 01:44:57 +03:00
String translate(String message, Locale from, Locale to);
}