[jboss-jira] [JBoss JIRA] (WFLY-4952) Provide a way to correlate HTTP managment requests

Heiko Braun (JIRA) issues at jboss.org
Fri Jul 17 03:21:03 EDT 2015


Heiko Braun created WFLY-4952:
---------------------------------

             Summary: Provide a way to correlate HTTP managment requests
                 Key: WFLY-4952
                 URL: https://issues.jboss.org/browse/WFLY-4952
             Project: WildFly
          Issue Type: Enhancement
          Components: Domain Management
            Reporter: Heiko Braun
            Assignee: Brian Stansberry
             Fix For: 10.0.0.Beta1


public class CorrelationHandler implements HttpHandler {

    private static final HttpString HEADER = new HttpString("X-CORR-ID");

    private final HttpHandler next;

    public CorrelationHandler(HttpHandler next) {
        this.next = next;
    }

    @Override
    public void handleRequest(HttpServerExchange exchange) throws Exception {
        String corr = exchange.getRequestHeaders().getFirst(HEADER);
        if(corr != null) {
            exchange.getResponseHeaders().put(HEADER, corr);
        }
        next.handleRequest(exchange);

    }
}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


More information about the jboss-jira mailing list