Skip to content

Commit 96ddc01

Browse files
committed
GH-9441: Deprecate Hazelcast module
Fixes: #9441 The most important Hazelcast CP Subsystem has been migrated to the Enterprise Edition. Therefore, we cannon provide Open Source support for feature based on those in the commercial Hazelcast.
1 parent 8bfb5d2 commit 96ddc01

File tree

70 files changed

+78
-6155
lines changed

Some content is hidden

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

70 files changed

+78
-6155
lines changed

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

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

3132
/**

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

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

3132
/**

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

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

3334
/**

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

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

3233
/**

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

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

2930
private static final String PREFIX = "hazelcast_";

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

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

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

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

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

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

3638
@Override

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

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

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

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

4244
private static final String CHANNEL_ATTRIBUTE = "channel";

0 commit comments

Comments
 (0)