Interface IEmailTemplateVariableResolver
-
@StableMinor(version="16.1", sinceVersion="11.2") public interface IEmailTemplateVariableResolver
Email template variable resolver.- Since:
- 11.2.0
- Version:
- $Revision: 26157 $ $Date: 2024-01-13 11:35:03 -0300 (Sat, 13 Jan 2024) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
resolveVariable(java.lang.String variableName)
Resolves the variable with the given name.
-
-
-
Method Detail
-
resolveVariable
java.lang.String resolveVariable(java.lang.String variableName) throws UnresolvedVariableException, PortalException
Resolves the variable with the given name. Anull
return value will be used as an empty string.- Parameters:
variableName
- the variable name.- Returns:
- the variable with the given name.
- Throws:
UnresolvedVariableException
- if the variable couldn't be resolved.PortalException
- Since:
- 11.2.0
-
-