
de.codecentric.cxf.logging.ElasticsearchField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-spring-boot-starter Show documentation
Show all versions of cxf-spring-boot-starter Show documentation
Boot starter for SOAP-Webservices with Apache CXF using JAX-WS & JAXB with Annotations only
The newest version!
package de.codecentric.cxf.logging;
public enum ElasticsearchField {
SOAP_METHOD_LOG_NAME("soap-method-name"),
HTTP_HEADER_INBOUND("http-header-inbound"),
SOAP_MESSAGE_INBOUND("soap-message-inbound"),
SOAP_MESSAGE_OUTBOUND("soap-message-outbound"),
SLEUTH_TRACE_ID("X-B3-TraceId");
private String fieldname;
private ElasticsearchField(String fieldname) {
this.fieldname = fieldname;
}
public String getName() {
return fieldname;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy