Class ParameterExtractor

java.lang.Object
org.apache.tiles.request.servlet.extractor.ParameterExtractor
All Implemented Interfaces:
HasKeys<String>

public class ParameterExtractor extends Object implements HasKeys<String>
Extract parameters from the request.
  • Constructor Details

    • ParameterExtractor

      public ParameterExtractor(jakarta.servlet.http.HttpServletRequest request)
      Constructor.
      Parameters:
      request - The servlet request.
  • Method Details

    • getKeys

      public Enumeration<String> getKeys()
      Description copied from interface: HasKeys
      The enumeration of the keys of the stored attributes.
      Specified by:
      getKeys in interface HasKeys<String>
      Returns:
      The keys.
    • getValue

      public String getValue(String key)
      Description copied from interface: HasKeys
      Returns the value of the attribute with the given key.
      Specified by:
      getValue in interface HasKeys<String>
      Parameters:
      key - The key of the attribute.
      Returns:
      The value.