Browse Source
Implement addBundleRegisterHandler for Spring Boot 3.5 SslBundles compatibility
pull/15278/head
Viacheslav Klimov
2 months ago
Failed to extract signature
1 changed files with
6 additions and
0 deletions
-
common/transport/transport-api/src/main/java/org/thingsboard/server/common/transport/config/ssl/SslCredentialsWebServerCustomizer.java
|
|
|
@ -30,6 +30,7 @@ import org.springframework.context.annotation.Bean; |
|
|
|
import org.springframework.stereotype.Component; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import java.util.function.BiConsumer; |
|
|
|
import java.util.function.Consumer; |
|
|
|
|
|
|
|
@Component |
|
|
|
@ -88,6 +89,11 @@ public class SslCredentialsWebServerCustomizer implements WebServerFactoryCustom |
|
|
|
public void addBundleUpdateHandler(String name, Consumer<SslBundle> handler) { |
|
|
|
// no-op
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void addBundleRegisterHandler(BiConsumer<String, SslBundle> handler) { |
|
|
|
// no-op
|
|
|
|
} |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
|