Class DefaultVariableResolver

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>, VariableResolver

@Deprecated public class DefaultVariableResolver extends RequestVariableResolver implements VariableResolver
Deprecated.
The DefaultVariableResolver is a HashMap based default implementation of the VariableResolver interface. It may be used by plugins to implement the interface for the request and is also used by the WebConsoleUtil.getVariableResolver(javax.servlet.ServletRequest) as the variable resolver if none has yet been assigned to the request.
See Also:
  • Constructor Details

    • DefaultVariableResolver

      public DefaultVariableResolver()
      Deprecated.
      Creates a new variable resolver with default capacity.
    • DefaultVariableResolver

      public DefaultVariableResolver(int initialCapacity, float loadFactor)
      Deprecated.
      Creates a new variable resolver and initializes both - capacity & load factor
      Parameters:
      initialCapacity - the initial capacity of the variable container
      loadFactor - the load factor of the variable container
      See Also:
    • DefaultVariableResolver

      public DefaultVariableResolver(int initialCapacity)
      Deprecated.
      Creates a new variable resolver with specified initial capacity
      Parameters:
      initialCapacity - the initial capacity of the variable container
      See Also:
    • DefaultVariableResolver

      public DefaultVariableResolver(Map source)
      Deprecated.
      Creates a new variable resolver copying the variables from the given map.
      Parameters:
      source - the map whose variables are to be placed in this resolver.
      See Also: