File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
spring-integration-debezium/src/main/java/org/springframework/integration/debezium Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 11/**
22 * Provides classes for supporting Debezium component via Java DSL.
33 */
4- @ org .springframework .lang .NonNullApi
5- @ org .springframework .lang .NonNullFields
4+ @ org .jspecify .annotations .NullMarked
65package org .springframework .integration .debezium .dsl ;
Original file line number Diff line number Diff line change 3131import io .debezium .engine .DebeziumEngine .RecordCommitter ;
3232import io .debezium .engine .Header ;
3333import io .debezium .engine .format .SerializationFormat ;
34+ import org .jspecify .annotations .Nullable ;
3435
3536import org .springframework .core .task .SimpleAsyncTaskExecutor ;
3637import org .springframework .core .task .TaskExecutor ;
3738import org .springframework .integration .debezium .support .DebeziumHeaders ;
3839import org .springframework .integration .debezium .support .DefaultDebeziumHeaderMapper ;
3940import org .springframework .integration .endpoint .MessageProducerSupport ;
40- import org .springframework .lang .Nullable ;
4141import org .springframework .messaging .Message ;
4242import org .springframework .messaging .MessageHeaders ;
4343import org .springframework .messaging .support .HeaderMapper ;
@@ -55,11 +55,13 @@ public class DebeziumMessageProducer extends MessageProducerSupport {
5555
5656 private final DebeziumEngine .Builder <ChangeEvent <byte [], byte []>> debeziumEngineBuilder ;
5757
58+ @ SuppressWarnings ("NullAway.Init" )
5859 private DebeziumEngine <ChangeEvent <byte [], byte []>> debeziumEngine ;
5960
6061 /**
6162 * Debezium Engine is designed to be submitted to an {@link Executor}.
6263 */
64+ @ SuppressWarnings ("NullAway.Init" )
6365 private TaskExecutor taskExecutor ;
6466
6567 private String contentType = "application/json" ;
Original file line number Diff line number Diff line change 11/**
22 * Provides classes for the Debezium inbound channel adapters.
33 */
4- @ org .springframework . lang . NonNullApi
4+ @ org .jspecify . annotations . NullMarked
55package org .springframework .integration .debezium .inbound ;
Original file line number Diff line number Diff line change 11/**
22 * Provides supporting classes for the Debezium channel adapters.
33 */
4- @ org .springframework . lang . NonNullApi
4+ @ org .jspecify . annotations . NullMarked
55package org .springframework .integration .debezium .support ;
You can’t perform that action at this time.
0 commit comments