Package com.invirgance.convirgance.web.parameter


package com.invirgance.convirgance.web.parameter
Parameter extraction and binding API. This package provides interfaces and implementations for extracting values from HTTP requests and making them available to services. Parameters act as the bridge between HTTP requests and the framework's data processing components.

Typical usage scenarios:

  • Extracting query parameters for database operations
  • Mapping request values to binding parameters
  • Providing default values for optional parameters
  • Combining request values with fixed configuration values
Author:
jbanes
  • Class
    Description
    Retrieve the value of an HTTP Header.
    Defines a parameter implementation that extracts values from HTTP requests.
    Extracts a variable from the URL path.
    Allows returning the parameters values of a HttpRequest as an array.
    Parameter implementation that extracts values from HTTP request parameters.
    Retrieves a value from the http session
    Parameter implementation that provides a fixed, predefined value.