Skip to content

Commit 0f225d8

Browse files
committed
Revert "GH-9441: Deprecate Hazelcast module"
This reverts commit 96ddc01
1 parent 5a1c3be commit 0f225d8

File tree

69 files changed

+6154
-71
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+6154
-71
lines changed

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/CacheEventType.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -26,7 +26,6 @@
2626
*
2727
* @see org.springframework.integration.hazelcast.inbound.AbstractHazelcastMessageProducer
2828
*/
29-
@Deprecated(forRemoval = true, since = "6.5")
3029
public enum CacheEventType {
3130

3231
/**

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/CacheListeningPolicyType.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -26,7 +26,6 @@
2626
*
2727
* @see org.springframework.integration.hazelcast.inbound.AbstractHazelcastMessageProducer
2828
*/
29-
@Deprecated(forRemoval = true, since = "6.5")
3029
public enum CacheListeningPolicyType {
3130

3231
/**

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/ClusterMonitorType.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -28,7 +28,6 @@
2828
* @see com.hazelcast.core.DistributedObjectListener
2929
* @see com.hazelcast.core.LifecycleListener
3030
*/
31-
@Deprecated(forRemoval = true, since = "6.5")
3231
public enum ClusterMonitorType {
3332

3433
/**

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/DistributedSQLIterationType.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -27,7 +27,6 @@
2727
* @see org.springframework.integration.hazelcast.inbound.HazelcastDistributedSQLMessageSource
2828
* @see com.hazelcast.map.IMap
2929
*/
30-
@Deprecated(forRemoval = true, since = "6.5")
3130
public enum DistributedSQLIterationType {
3231

3332
/**

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/HazelcastHeaders.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -24,7 +24,6 @@
2424
*
2525
* @since 6.0
2626
*/
27-
@Deprecated(forRemoval = true, since = "6.5")
2827
public abstract class HazelcastHeaders {
2928

3029
private static final String PREFIX = "hazelcast_";

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/HazelcastIntegrationDefinitionValidator.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -40,8 +40,6 @@
4040
*
4141
* @since 6.0
4242
*/
43-
@Deprecated(forRemoval = true, since = "6.5")
44-
@SuppressWarnings("removal")
4543
public final class HazelcastIntegrationDefinitionValidator {
4644

4745
public static <E extends Enum<E>> Set<String> validateEnumType(final Class<E> enumType, final String types) {

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/HazelcastLocalInstanceRegistrar.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -40,8 +40,6 @@
4040
*
4141
* @since 6.0
4242
*/
43-
@Deprecated(forRemoval = true, since = "6.5")
44-
@SuppressWarnings("removal")
4543
public class HazelcastLocalInstanceRegistrar implements SmartInitializingSingleton {
4644

4745
private static final Log logger = LogFactory.getLog(HazelcastLocalInstanceRegistrar.class);

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/config/HazelcastIntegrationConfigurationInitializer.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -31,8 +31,6 @@
3131
*
3232
* @since 6.0
3333
*/
34-
@Deprecated(forRemoval = true, since = "6.5")
35-
@SuppressWarnings("removal")
3634
public class HazelcastIntegrationConfigurationInitializer implements IntegrationConfigurationInitializer {
3735

3836
@Override

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/config/xml/HazelcastClusterMonitorInboundChannelAdapterParser.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -34,8 +34,6 @@
3434
* @author Eren Avsarogullari
3535
* @since 6.0
3636
*/
37-
@Deprecated(forRemoval = true, since = "6.5")
38-
@SuppressWarnings("removal")
3937
public class HazelcastClusterMonitorInboundChannelAdapterParser extends
4038
AbstractSingleBeanDefinitionParser {
4139

spring-integration-hazelcast/src/main/java/org/springframework/integration/hazelcast/config/xml/HazelcastContinuousQueryInboundChannelAdapterParser.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2025 the original author or authors.
2+
* Copyright 2015-2022 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.
@@ -37,8 +37,6 @@
3737
*
3838
* @since 6.0
3939
*/
40-
@Deprecated(forRemoval = true, since = "6.5")
41-
@SuppressWarnings("removal")
4240
public class HazelcastContinuousQueryInboundChannelAdapterParser extends AbstractSingleBeanDefinitionParser {
4341

4442
private static final String CHANNEL_ATTRIBUTE = "channel";

0 commit comments

Comments
 (0)