Class ConnectorMessagesImpl
- java.lang.Object
-
- org.identityconnectors.framework.impl.api.ConnectorMessagesImpl
-
- All Implemented Interfaces:
ConnectorMessages
public class ConnectorMessagesImpl extends Object implements ConnectorMessages
-
-
Constructor Summary
Constructors Constructor Description ConnectorMessagesImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
format(String key, String dflt, Object... args)
Formats the given message key in theCurrentLocale
.Map<Locale,Map<String,String>>
getCatalogs()
void
setCatalogs(Map<Locale,Map<String,String>> catalogs)
-
-
-
Method Detail
-
format
public String format(String key, String dflt, Object... args)
Description copied from interface:ConnectorMessages
Formats the given message key in theCurrentLocale
.- Specified by:
format
in interfaceConnectorMessages
- Parameters:
key
- The message key to format.dflt
- The default message if key is not found. If null, defaults to key.args
- Parameters with which to format the message.- Returns:
- The formatted string.
-
-