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

de.codecentric.cxf.logging.ElasticsearchField Maven / Gradle / Ivy

Go to download

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