org.zalando.nakadiproducer.flowid.NoopFlowIdComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nakadi-producer-spring-boot-starter Show documentation
Show all versions of nakadi-producer-spring-boot-starter Show documentation
Spring Boot Auto Configuration for Nakadi event producer
package org.zalando.nakadiproducer.flowid;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class NoopFlowIdComponent implements FlowIdComponent {
@Override
public String getXFlowIdValue() {
log.debug("No bean of class FlowIdComponent was found. Returning null.");
return null;
}
}