public abstract class MessageFactory extends Object
Modifier and Type | Field and Description |
---|---|
static ResourceBundle.Control |
DEFAULT_RELOAD_CONTROL
Default is
ReloadControl.Always . |
protected Log |
logger |
protected static ResourceBundle.Control |
reloadControl
Do not use the default reload control to avoid loading the resource bundle upon each request.
|
Constructor and Description |
---|
MessageFactory() |
Modifier and Type | Method and Description |
---|---|
protected Message |
createMessage(String bundlePath,
int code)
Factory method to create a new
Message instance that is filled with the formatted
message with id code from the resource bundle bundlePath . |
protected Message |
createMessage(String bundlePath,
int code,
Object... arguments)
Factory method to create a new
Message instance that is filled with the formatted
message with id code from the resource bundle bundlePath . |
protected Message |
createMessage(String bundlePath,
int code,
Object arg)
Factory method to create a new
Message instance that is filled with the formatted
message with id code from the resource bundle bundlePath . |
protected Message |
createMessage(String bundlePath,
int code,
Object arg1,
Object arg2)
Factory method to create a new
Message instance that is filled with the formatted
message with id code from the resource bundle bundlePath . |
protected Message |
createMessage(String bundlePath,
int code,
Object arg1,
Object arg2,
Object arg3)
Factory method to create a new
Message instance that is filled with the formatted
message with id code from the resource bundle bundlePath . |
static Message |
createStaticMessage(String message)
Factory method to create a
Message instance that is not read from a resource bundle. |
static Message |
createStaticMessage(String message,
Object... arguments)
Factory method to create a
Message instance that is not read from a resource bundle. |
protected ResourceBundle |
getBundle(String bundlePath) |
protected static String |
getBundlePath(String bundleName)
Computes the bundle's full path
(
META-INF/services/org/mule/i18n/<bundleName>-messages.properties ) from
bundleName . |
protected ClassLoader |
getClassLoader()
Override this method to return the classloader for the bundle/module which
contains the needed resource files.
|
protected ResourceBundle.Control |
getReloadControl()
Subclasses should override to customize the bundle reload control.
|
protected String |
getString(String bundlePath,
int code)
Factory method to read the message with code
code from the resource bundle. |
protected String |
getString(String bundlePath,
int code,
Object arg)
Factory method to read the message with code
code from the resource bundle. |
protected String |
getString(String bundlePath,
int code,
Object[] args) |
protected String |
getString(String bundlePath,
int code,
Object arg1,
Object arg2)
Factory method to read the message with code
code from the resource bundle. |
public static final ResourceBundle.Control DEFAULT_RELOAD_CONTROL
ReloadControl.Always
.protected transient Log logger
protected static final ResourceBundle.Control reloadControl
protected static String getBundlePath(String bundleName)
META-INF/services/org/mule/i18n/<bundleName>-messages.properties
) from
bundleName
.bundleName
- Name of the bundle without the "messages" suffix and without
file extension.protected Message createMessage(String bundlePath, int code, Object arg)
Message
instance that is filled with the formatted
message with id code
from the resource bundle bundlePath
.bundlePath
- complete path to the resource bundle for lookupcode
- numeric code of the messagearg
- getBundlePath(String)
protected Message createMessage(String bundlePath, int code, Object arg1, Object arg2)
Message
instance that is filled with the formatted
message with id code
from the resource bundle bundlePath
.bundlePath
- complete path to the resource bundle for lookupcode
- numeric code of the messagearg1
- arg2
- getBundlePath(String)
protected Message createMessage(String bundlePath, int code, Object arg1, Object arg2, Object arg3)
Message
instance that is filled with the formatted
message with id code
from the resource bundle bundlePath
.bundlePath
- complete path to the resource bundle for lookupcode
- numeric code of the messagearg1
- arg2
- arg3
- getBundlePath(String)
protected Message createMessage(String bundlePath, int code, Object... arguments)
Message
instance that is filled with the formatted
message with id code
from the resource bundle bundlePath
.
Attention: do not confuse this method with
createMessage(String, int, Object)
.bundlePath
- complete path to the resource bundle for lookupcode
- numeric code of the messagearguments
- getBundlePath(String)
protected Message createMessage(String bundlePath, int code)
Message
instance that is filled with the formatted
message with id code
from the resource bundle bundlePath
.bundlePath
- complete path to the resource bundle for lookupcode
- numeric code of the messagepublic static Message createStaticMessage(String message)
Message
instance that is not read from a resource bundle.message
- Message's message textpublic static Message createStaticMessage(String message, Object... arguments)
Message
instance that is not read from a resource bundle.message
- Static message text that may contain format specifiersarguments
- Arguments referenced by the format specifiers in the message string.protected String getString(String bundlePath, int code)
code
from the resource bundle.bundlePath
- complete path to the resource bundle for lookupcode
- numeric code of the messageString
protected String getString(String bundlePath, int code, Object arg)
code
from the resource bundle.bundlePath
- complete path to the resource bundle for lookupcode
- numeric code of the messagearg
- String
protected String getString(String bundlePath, int code, Object arg1, Object arg2)
code
from the resource bundle.bundlePath
- complete path to the resource bundle for lookupcode
- numeric code of the messagearg1
- arg2
- String
protected ResourceBundle getBundle(String bundlePath)
MissingResourceException
- if resource is missingprotected ClassLoader getClassLoader()
protected ResourceBundle.Control getReloadControl()
DEFAULT_RELOAD_CONTROL
Copyright © 2003–2016 MuleSoft, Inc.. All rights reserved.