Class MpUriBuilder

    • Method Detail

      • setQueryParamStyle

        public void setQueryParamStyle​(org.eclipse.microprofile.rest.client.ext.QueryParamStyle queryParamStyle)
      • clientQueryParam

        public javax.ws.rs.core.UriBuilder clientQueryParam​(String name,
                                                            Object... values)
                                                     throws IllegalArgumentException
        Description copied from class: ResteasyUriBuilderImpl
        Called by ClientRequest.getUri() to add a query parameter for @QueryParam parameters. We do not use UriBuilder.queryParam() because
        • queryParam() supports URI template processing and this method must always encode braces (for parameter substitution is not possible for @QueryParam parameters).
        • queryParam() supports "contextual URI encoding" (i.e., it does not encode % characters that are followed by two hex characters). The JavaDoc for @QueryParam.value() explicitly states that the value is specified in decoded format and that "any percent encoded literals within the value will not be decoded and will instead be treated as literal text". This means that it is an explicit bug to perform contextual URI encoding of this method's name parameter; hence, we must always encode said parameter. This method also foregoes contextual URI encoding on this method's values parameter because it represents arbitrary data passed to a QueryParam parameter of a client proxy (since the client proxy is nothing more than a transport layer, it should not be "interpreting" such data; instead, it should faithfully transmit this data over the wire).
        Overrides:
        clientQueryParam in class ResteasyUriBuilderImpl
        Parameters:
        name - the name of the query parameter.
        values - the value(s) of the query parameter.
        Returns:
        Returns this instance to allow call chaining.
        Throws:
        IllegalArgumentException