Interface TestableRequest

    • Method Detail

      • clear

        TestableRequest clear()
        Clears the internal parameters map.
        Returns:
        the request for further configuration
      • setPath

        TestableRequest setPath​(java.lang.String path)
        Sets the path; the path should begin with a "/" character and contain everything from there to the start of query parameters (if any).
        Parameters:
        path -
        Returns:
        the request for further configuration
      • setLocale

        TestableRequest setLocale​(java.util.Locale locale)
        Sets the locale requested by "the browser".
        Returns:
        the request for further configuration
      • loadParameter

        TestableRequest loadParameter​(java.lang.String parameterName,
                                      java.lang.String parameterValue)
        Loads a single parameter/value pair. This may define a new parameter, or add a value to a list of parameters.
        Returns:
        the request for further configuration
      • overrideParameter

        TestableRequest overrideParameter​(java.lang.String parameterName,
                                          java.lang.String parameterValue)
        Overrides a parameter to the specific value, regardless of how the parameter was previously set.