01: package org.conform.format; 02: 03: import java.util.Locale; 04: import java.util.List; 05: 06: public interface ResourceProvider { 07: String getMessage(Locale locale, String code, Object... args); 08: 09: List<Locale> getSupportedLocales(); 10: }