Package org.apache.felix.webconsole
Interface VariableResolver
-
- All Known Implementing Classes:
DefaultVariableResolver
@Deprecated(since="2021-04-30") public interface VariableResolver
Deprecated.The Apache Felix Webconsole is not supported in Cloud environments.TheVariableResolver
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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
resolve(java.lang.String variable)
Deprecated.Returns a replacement value for the named variable ornull
if no replacement is available.
-
-
-
Method Detail
-
resolve
java.lang.String resolve(java.lang.String variable)
Deprecated.Returns a replacement value for the named variable ornull
if no replacement is available.- Parameters:
variable
- The name of the variable for which to return a replacement.- Returns:
- The replacement value or
null
if no replacement is available.
-
-