filterChain.doFilter(request, response);
}
}
public void enrichHttpResponse(@Observes EnrichHttpResponse event, ServiceLoader services) {
HttpResponseEnricher responseEnricher = services.onlyOne(HttpResponseEnricher.class);
responseEnricher.enrichResponse();
}