Skip to content

Commit 64440cb

Browse files
authored
GH-3829: Remove items marked as deprecated in previous generations
Fixes: #3829 Issue: #3829 Since 4.0.0 is a new major version, we can remove all the previously deprecated components. Signed-off-by: Soby Chacko <[email protected]>
1 parent e991de8 commit 64440cb

File tree

6 files changed

+2
-122
lines changed

6 files changed

+2
-122
lines changed

spring-kafka/src/main/java/org/springframework/kafka/event/ConsumerPartitionPausedEvent.java

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018-2024 the original author or authors.
2+
* Copyright 2018-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -44,16 +44,6 @@ public ConsumerPartitionPausedEvent(Object source, Object container, TopicPartit
4444
this.partition = partition;
4545
}
4646

47-
/**
48-
* Return the paused partition.
49-
* @return the partition.
50-
* @deprecated replaced by {@link #getPartition()}
51-
*/
52-
@Deprecated(since = "3.3", forRemoval = true)
53-
public TopicPartition getPartitions() {
54-
return this.partition;
55-
}
56-
5747
/**
5848
* Return the paused partition.
5949
* @return the partition.

spring-kafka/src/main/java/org/springframework/kafka/listener/AbstractConsumerSeekAware.java

-35
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,10 @@
2323
import java.util.List;
2424
import java.util.Map;
2525
import java.util.concurrent.ConcurrentHashMap;
26-
import java.util.stream.Collectors;
2726

2827
import org.apache.kafka.common.TopicPartition;
2928
import org.jspecify.annotations.Nullable;
3029

31-
import org.springframework.util.CollectionUtils;
32-
3330
/**
3431
* Manages the {@link ConsumerSeekAware.ConsumerSeekCallback} s for the listener. If the
3532
* listener subclasses this class, it can easily seek arbitrary topics/partitions without
@@ -89,22 +86,6 @@ public void unregisterSeekCallback() {
8986
this.callbackForThread.remove(Thread.currentThread());
9087
}
9188

92-
/**
93-
* Return the callback for the specified topic/partition.
94-
* @param topicPartition the topic/partition.
95-
* @return the callback (or null if there is no assignment).
96-
* @deprecated Replaced by {@link #getSeekCallbacksFor(TopicPartition)}
97-
*/
98-
@Deprecated(since = "3.3", forRemoval = true)
99-
@Nullable
100-
protected ConsumerSeekCallback getSeekCallbackFor(TopicPartition topicPartition) {
101-
List<ConsumerSeekCallback> callbacks = getSeekCallbacksFor(topicPartition);
102-
if (CollectionUtils.isEmpty(callbacks)) {
103-
return null;
104-
}
105-
return callbacks.get(0);
106-
}
107-
10889
/**
10990
* Return the callbacks for the specified topic/partition.
11091
* @param topicPartition the topic/partition.
@@ -116,22 +97,6 @@ protected List<ConsumerSeekCallback> getSeekCallbacksFor(TopicPartition topicPar
11697
return this.topicToCallbacks.get(topicPartition);
11798
}
11899

119-
/**
120-
* The map of callbacks for all currently assigned partitions.
121-
* @return the map.
122-
* @deprecated Replaced by {@link #getTopicsAndCallbacks()}
123-
*/
124-
@Deprecated(since = "3.3", forRemoval = true)
125-
protected Map<TopicPartition, ConsumerSeekCallback> getSeekCallbacks() {
126-
Map<TopicPartition, List<ConsumerSeekCallback>> topicsAndCallbacks = getTopicsAndCallbacks();
127-
return topicsAndCallbacks.entrySet().stream()
128-
.filter(entry -> !entry.getValue().isEmpty())
129-
.collect(Collectors.toMap(
130-
Map.Entry::getKey,
131-
entry -> entry.getValue().get(0)
132-
));
133-
}
134-
135100
/**
136101
* The map of callbacks for all currently assigned partitions.
137102
* @return the map.

spring-kafka/src/main/java/org/springframework/kafka/listener/DeadLetterPublishingRecoverer.java

+1-16
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ public class DeadLetterPublishingRecoverer extends ExceptionClassifier implement
9292

9393
private final EnumSet<HeaderNames.HeadersToAdd> whichHeaders = EnumSet.allOf(HeaderNames.HeadersToAdd.class);
9494

95-
@SuppressWarnings("this-escape")
96-
private @Nullable HeaderNames headerNames = getHeaderNames();
95+
private @Nullable HeaderNames headerNames;
9796

9897
private boolean retainExceptionHeader;
9998

@@ -877,20 +876,6 @@ private String getStackTraceAsString(Throwable cause) {
877876
return stringWriter.getBuffer().toString();
878877
}
879878

880-
/**
881-
* Override this if you want different header names to be used
882-
* in the sent record.
883-
* @return the header names.
884-
* @since 2.7
885-
* @deprecated since 3.0.9 - provide a supplier instead.
886-
* @see #setHeaderNamesSupplier(Supplier)
887-
*/
888-
@Nullable
889-
@Deprecated(since = "3.0.9", forRemoval = true) // 3.2
890-
protected HeaderNames getHeaderNames() {
891-
return null;
892-
}
893-
894879
/**
895880
* Set a {@link Supplier} for {@link HeaderNames}.
896881
* @param supplier the supplier.

spring-kafka/src/main/java/org/springframework/kafka/listener/ListenerUtils.java

-36
Original file line numberDiff line numberDiff line change
@@ -77,42 +77,6 @@ else if (listener instanceof GenericMessageListener) {
7777
return listenerType;
7878
}
7979

80-
/**
81-
* Sleep according to the {@link BackOff}; when the {@link BackOffExecution} returns
82-
* {@link BackOffExecution#STOP} sleep for the previous backOff.
83-
* @param backOff the {@link BackOff} to create a new {@link BackOffExecution}.
84-
* @param executions a thread local containing the {@link BackOffExecution} for this
85-
* thread.
86-
* @param lastIntervals a thread local containing the previous {@link BackOff}
87-
* interval for this thread.
88-
* @param container the container or parent container.
89-
* @throws InterruptedException if the thread is interrupted.
90-
* @since 2.7
91-
* @deprecated in favor of
92-
* {@link #unrecoverableBackOff(BackOff, Map, Map, MessageListenerContainer)}.
93-
*/
94-
@Deprecated(since = "3.1", forRemoval = true) // 3.2
95-
public static void unrecoverableBackOff(BackOff backOff, ThreadLocal<BackOffExecution> executions,
96-
ThreadLocal<Long> lastIntervals, MessageListenerContainer container) throws InterruptedException {
97-
98-
BackOffExecution backOffExecution = executions.get();
99-
if (backOffExecution == null) {
100-
backOffExecution = backOff.start();
101-
executions.set(backOffExecution);
102-
}
103-
Long interval = backOffExecution.nextBackOff();
104-
if (interval == BackOffExecution.STOP) {
105-
interval = lastIntervals.get();
106-
if (interval == null) {
107-
interval = Long.valueOf(0);
108-
}
109-
}
110-
lastIntervals.set(interval);
111-
if (interval > 0) {
112-
stoppableSleep(container, interval);
113-
}
114-
}
115-
11680
/**
11781
* Sleep according to the {@link BackOff}; when the {@link BackOffExecution} returns
11882
* {@link BackOffExecution#STOP} sleep for the previous backOff.

spring-kafka/src/main/java/org/springframework/kafka/retrytopic/DestinationTopicContainer.java

-14
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,6 @@ public interface DestinationTopicContainer {
6161
*/
6262
DestinationTopic getNextDestinationTopicFor(String mainListenerId, String topicName);
6363

64-
/**
65-
* Returns the {@link DestinationTopic} instance registered as
66-
* DLT for the given topic, or null if none is found.
67-
* @param mainListenerId the listener id.
68-
* @param topicName the topic name for which to look the DLT for
69-
* @return The {@link DestinationTopic} instance corresponding to the DLT.
70-
* @deprecated Replaced by {@link #getDltFor(String, String, Exception)}
71-
*/
72-
@Nullable
73-
@Deprecated(since = "3.2", forRemoval = true)
74-
default DestinationTopic getDltFor(String mainListenerId, String topicName) {
75-
return getDltFor(mainListenerId, topicName, null);
76-
}
77-
7864
/**
7965
* Returns the {@link DestinationTopic} instance registered as
8066
* DLT for the given topic taking into consideration the exception

spring-kafka/src/main/java/org/springframework/kafka/support/KafkaUtils.java

-10
Original file line numberDiff line numberDiff line change
@@ -158,16 +158,6 @@ else if (dt instanceof String str) {
158158
min));
159159
}
160160

161-
/**
162-
* Set to true to only log record metadata.
163-
* @param onlyMeta true to only log record metadata.
164-
* @since 2.7.12
165-
* @deprecated - no longer used.
166-
*/
167-
@Deprecated(since = "3.1", forRemoval = true) // 3.2
168-
public static void setLogOnlyMetadata(boolean onlyMeta) {
169-
}
170-
171161
/**
172162
* Set a formatter for logging {@link ConsumerRecord}s.
173163
* @param formatter a function to format the record as a String

0 commit comments

Comments
 (0)