All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.rest.client.reactive.runtime.ExtendedHeaderFiller Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.rest.client.reactive.runtime;

import jakarta.ws.rs.core.MultivaluedMap;

import org.jboss.resteasy.reactive.client.spi.ResteasyReactiveClientRequestContext;

import io.quarkus.rest.client.reactive.HeaderFiller;

public interface ExtendedHeaderFiller extends HeaderFiller {

    void addHeaders(MultivaluedMap headers, ResteasyReactiveClientRequestContext requestContext);

    default void addHeaders(MultivaluedMap headers) {
        throw new IllegalStateException("should not be used");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy