public interface VariableResolver
VariableResolver
interface defines the API for an object
which may be provided by plugins to provide replacement values for
variables in the generated content.
Plugins should call the
WebConsoleUtil#setVariableResolver(javax.servlet.ServletRequest, VariableResolver)
method to provide their implementation for variable resolution.
The main use of such a variable resolver is when a plugin is using a static template which provides slots to place dynamically generated content parts.
Note: The variable resolver must be set in the request before
the response writer is retrieved calling the
ServletRequest.getWriter()
method. Otherwise the variable
resolver will not be used for resolving variables.
WebConsoleUtil#getVariableResolver(javax.servlet.ServletRequest)
,
WebConsoleUtil#setVariableResolver(javax.servlet.ServletRequest, VariableResolver)
Modifier and Type | Method and Description |
---|---|
java.lang.String |
resolve(java.lang.String variable)
Returns a replacement value for the named variable or
null
if no replacement is available. |
java.lang.String resolve(java.lang.String variable)
null
if no replacement is available.variable
- The name of the variable for which to return a
replacement.null
if no replacement is
available."Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"