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

ee.bitweb.core.trace.TraceIdProperties Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package ee.bitweb.core.trace;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import static ee.bitweb.core.trace.TraceIdProperties.PREFIX;

@Setter
@Getter
@Component
@ConfigurationProperties(PREFIX)
public class TraceIdProperties {

    static final String PREFIX = "ee.bitweb.core.trace";

    private Boolean autoConfiguration = false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy