TemplateResolverpublic interface TemplateResolver Interface implemented by MBeans which can resolve a template
String to a value. Template strings are of the form ${XYZ} and
are returned as the values of certain Attributes. |
Methods Summary |
---|
public boolean | isTemplateString(java.lang.String s)If the String is a template, return true. A template String is a String
of the form ${XYZ}.
| public java.lang.String | resolveTemplateString(java.lang.String template)If the String is a template, resolve it. If it is a template, but
cannot be resolved, return it unchanged.
If the String is not a template, return it unchanged.
|
|