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

io.opentelemetry.javaagent.instrumentation.undertow.UndertowHttpResponseMutator Maven / Gradle / Ivy

There is a newer version: 2.8.0-alpha
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.javaagent.instrumentation.undertow;

import io.opentelemetry.javaagent.bootstrap.http.HttpServerResponseMutator;
import io.undertow.server.HttpServerExchange;
import io.undertow.util.HttpString;

public enum UndertowHttpResponseMutator implements HttpServerResponseMutator {
  INSTANCE;

  UndertowHttpResponseMutator() {}

  @Override
  public void appendHeader(HttpServerExchange exchange, String name, String value) {
    exchange.getResponseHeaders().add(HttpString.tryFromString(name), value);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy