Interface Parameter
- All Known Implementing Classes:
RequestArrayParameter
,RequestParameter
,StaticParameter
public interface Parameter
Defines a parameter implementation that extracts values from HTTP requests.
- Author:
- jbanes
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
Gets the name of this parameter.getValue
(HttpRequest request) Extracts a value from the HTTP request.
-
Method Details
-
getName
String getName()Gets the name of this parameter.- Returns:
- The parameter name
-
getValue
Extracts a value from the HTTP request.- Parameters:
request
- The HTTP request to extract values from- Returns:
- The extracted value
-