@@ -82,8 +82,7 @@ public abstract class AbstractKafkaListenerEndpoint<K, V>
82
82
83
83
private final Collection <TopicPartitionOffset > topicPartitions = new ArrayList <>();
84
84
85
- @ SuppressWarnings ("NullAway.Init" )
86
- private BeanFactory beanFactory ;
85
+ private @ Nullable BeanFactory beanFactory ;
87
86
88
87
private @ Nullable BeanExpressionResolver resolver ;
89
88
@@ -115,8 +114,7 @@ public abstract class AbstractKafkaListenerEndpoint<K, V>
115
114
116
115
private @ Nullable BatchToRecordAdapter <K , V > batchToRecordAdapter ;
117
116
118
- @ SuppressWarnings ("NullAway.Init" )
119
- private byte [] listenerInfo ;
117
+ private byte @ Nullable [] listenerInfo ;
120
118
121
119
private @ Nullable String correlationHeaderName ;
122
120
@@ -135,23 +133,19 @@ public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
135
133
this .beanResolver = new BeanFactoryResolver (beanFactory );
136
134
}
137
135
138
- @ Nullable
139
- protected BeanFactory getBeanFactory () {
136
+ protected @ Nullable BeanFactory getBeanFactory () {
140
137
return this .beanFactory ;
141
138
}
142
139
143
- @ Nullable
144
- protected BeanExpressionResolver getResolver () {
140
+ protected @ Nullable BeanExpressionResolver getResolver () {
145
141
return this .resolver ;
146
142
}
147
143
148
- @ Nullable
149
- protected BeanExpressionContext getBeanExpressionContext () {
144
+ protected @ Nullable BeanExpressionContext getBeanExpressionContext () {
150
145
return this .expressionContext ;
151
146
}
152
147
153
- @ Nullable
154
- protected BeanResolver getBeanResolver () {
148
+ protected @ Nullable BeanResolver getBeanResolver () {
155
149
return this .beanResolver ;
156
150
}
157
151
@@ -164,14 +158,12 @@ public void setMainListenerId(@Nullable String id) {
164
158
}
165
159
166
160
@ Override
167
- @ Nullable
168
- public String getMainListenerId () {
161
+ public @ Nullable String getMainListenerId () {
169
162
return this .mainListenerId ;
170
163
}
171
164
172
- @ Nullable
173
165
@ Override
174
- public String getId () {
166
+ public @ Nullable String getId () {
175
167
return this .id ;
176
168
}
177
169
@@ -185,9 +177,8 @@ public void setGroupId(@Nullable String groupId) {
185
177
this .groupId = groupId ;
186
178
}
187
179
188
- @ Nullable
189
180
@ Override
190
- public String getGroupId () {
181
+ public @ Nullable String getGroupId () {
191
182
return this .groupId ;
192
183
}
193
184
@@ -233,9 +224,8 @@ public void setTopicPartitions(TopicPartitionOffset... topicPartitions) {
233
224
* @return the topicPartitions for this endpoint.
234
225
* @since 2.3
235
226
*/
236
- @ Nullable
237
227
@ Override
238
- public TopicPartitionOffset [] getTopicPartitionsToAssign () {
228
+ public TopicPartitionOffset @ Nullable [] getTopicPartitionsToAssign () {
239
229
return this .topicPartitions .toArray (new TopicPartitionOffset [0 ]);
240
230
}
241
231
@@ -254,15 +244,13 @@ public void setTopicPattern(@Nullable Pattern topicPattern) {
254
244
* Return the topicPattern for this endpoint.
255
245
* @return the topicPattern for this endpoint.
256
246
*/
257
- @ Nullable
258
247
@ Override
259
- public Pattern getTopicPattern () {
248
+ public @ Nullable Pattern getTopicPattern () {
260
249
return this .topicPattern ;
261
250
}
262
251
263
- @ Nullable
264
252
@ Override
265
- public String getGroup () {
253
+ public @ Nullable String getGroup () {
266
254
return this .group ;
267
255
}
268
256
@@ -290,8 +278,7 @@ public boolean isBatchListener() {
290
278
* @since 2.8
291
279
*/
292
280
@ Override
293
- @ Nullable
294
- public Boolean getBatchListener () {
281
+ public @ Nullable Boolean getBatchListener () {
295
282
return this .batchListener ;
296
283
}
297
284
@@ -313,13 +300,11 @@ public void setReplyTemplate(KafkaTemplate<?, ?> replyTemplate) {
313
300
this .replyTemplate = replyTemplate ;
314
301
}
315
302
316
- @ Nullable
317
- protected KafkaTemplate <?, ?> getReplyTemplate () {
303
+ protected @ Nullable KafkaTemplate <?, ?> getReplyTemplate () {
318
304
return this .replyTemplate ;
319
305
}
320
306
321
- @ Nullable
322
- protected RecordFilterStrategy <? super K , ? super V > getRecordFilterStrategy () {
307
+ protected @ Nullable RecordFilterStrategy <? super K , ? super V > getRecordFilterStrategy () {
323
308
return this .recordFilterStrategy ;
324
309
}
325
310
@@ -344,9 +329,8 @@ public void setAckDiscarded(boolean ackDiscarded) {
344
329
this .ackDiscarded = ackDiscarded ;
345
330
}
346
331
347
- @ Nullable
348
332
@ Override
349
- public String getClientIdPrefix () {
333
+ public @ Nullable String getClientIdPrefix () {
350
334
return this .clientIdPrefix ;
351
335
}
352
336
@@ -361,8 +345,7 @@ public void setClientIdPrefix(@Nullable String clientIdPrefix) {
361
345
}
362
346
363
347
@ Override
364
- @ Nullable
365
- public Integer getConcurrency () {
348
+ public @ Nullable Integer getConcurrency () {
366
349
return this .concurrency ;
367
350
}
368
351
@@ -376,8 +359,7 @@ public void setConcurrency(@Nullable Integer concurrency) {
376
359
}
377
360
378
361
@ Override
379
- @ Nullable
380
- public Boolean getAutoStartup () {
362
+ public @ Nullable Boolean getAutoStartup () {
381
363
return this .autoStartup ;
382
364
}
383
365
@@ -400,8 +382,7 @@ public void setReplyHeadersConfigurer(ReplyHeadersConfigurer replyHeadersConfigu
400
382
}
401
383
402
384
@ Override
403
- @ Nullable
404
- public Properties getConsumerProperties () {
385
+ public @ Nullable Properties getConsumerProperties () {
405
386
return this .consumerProperties ;
406
387
}
407
388
@@ -436,9 +417,8 @@ public void setSplitIterables(boolean splitIterables) {
436
417
}
437
418
438
419
@ Override
439
- @ SuppressWarnings ("NullAway" ) // Dataflow analysis limitation
440
- public byte [] getListenerInfo () {
441
- return this .listenerInfo ; // NOSONAR
420
+ public byte @ Nullable [] getListenerInfo () {
421
+ return this .listenerInfo ;
442
422
}
443
423
444
424
/**
@@ -450,8 +430,7 @@ public void setListenerInfo(byte[] listenerInfo) { // NOSONAR
450
430
this .listenerInfo = listenerInfo ; // NOSONAR
451
431
}
452
432
453
- @ Nullable
454
- protected BatchToRecordAdapter <K , V > getBatchToRecordAdapter () {
433
+ protected @ Nullable BatchToRecordAdapter <K , V > getBatchToRecordAdapter () {
455
434
return this .batchToRecordAdapter ;
456
435
}
457
436
@@ -525,7 +504,7 @@ public void setupListenerContainer(MessageListenerContainer listenerContainer,
525
504
protected abstract MessagingMessageListenerAdapter <K , V > createMessageListener (MessageListenerContainer container ,
526
505
@ Nullable MessageConverter messageConverter );
527
506
528
- @ SuppressWarnings ({ "unchecked" , "NullAway" } )
507
+ @ SuppressWarnings ("unchecked" )
529
508
private void setupMessageListener (MessageListenerContainer container ,
530
509
@ Nullable MessageConverter messageConverter ) {
531
510
@@ -535,8 +514,6 @@ private void setupMessageListener(MessageListenerContainer container,
535
514
.acceptIfNotNull (this .correlationHeaderName , adapter ::setCorrelationHeaderName );
536
515
adapter .setSplitIterables (this .splitIterables );
537
516
Object messageListener = adapter ;
538
- Assert .state (messageListener != null ,
539
- () -> "Endpoint [" + this + "] must provide a non null message listener" );
540
517
if (this .recordFilterStrategy != null ) {
541
518
if (isBatchListener ()) {
542
519
if (((MessagingMessageListenerAdapter <K , V >) messageListener ).isConsumerRecords ()) {
0 commit comments