From 4140f87f2294b6eda04e8f5afeea01c30d55193f Mon Sep 17 00:00:00 2001 From: fh-ms Date: Thu, 5 Oct 2023 16:58:09 +0200 Subject: [PATCH] Add missing azure config --- .../spring/boot/types/StorageFilesystem.java | 14 ++++++++++++++ .../spring/boot/types/StorageFilesystem.java | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/integrations/spring-boot/src/main/java/one/microstream/integrations/spring/boot/types/StorageFilesystem.java b/integrations/spring-boot/src/main/java/one/microstream/integrations/spring/boot/types/StorageFilesystem.java index 0c0a5c97b..be22e10cd 100644 --- a/integrations/spring-boot/src/main/java/one/microstream/integrations/spring/boot/types/StorageFilesystem.java +++ b/integrations/spring-boot/src/main/java/one/microstream/integrations/spring/boot/types/StorageFilesystem.java @@ -25,6 +25,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty; import one.microstream.integrations.spring.boot.types.aws.Aws; +import one.microstream.integrations.spring.boot.types.azure.Azure; import one.microstream.integrations.spring.boot.types.hazelcast.Hazelcast; import one.microstream.integrations.spring.boot.types.mongodb.Mongodb; import one.microstream.integrations.spring.boot.types.oracle.Oracle; @@ -40,6 +41,9 @@ public class StorageFilesystem @NestedConfigurationProperty private Aws aws; + + @NestedConfigurationProperty + private Azure azure; @NestedConfigurationProperty private Hazelcast hazelcast; @@ -81,6 +85,16 @@ public void setAws(final Aws aws) { this.aws = aws; } + + public Azure getAzure() + { + return this.azure; + } + + public void setAzure(final Azure azure) + { + this.azure = azure; + } public Hazelcast getHazelcast() { diff --git a/integrations/spring-boot3/src/main/java/one/microstream/integrations/spring/boot/types/StorageFilesystem.java b/integrations/spring-boot3/src/main/java/one/microstream/integrations/spring/boot/types/StorageFilesystem.java index 2b81fe930..50cda83af 100644 --- a/integrations/spring-boot3/src/main/java/one/microstream/integrations/spring/boot/types/StorageFilesystem.java +++ b/integrations/spring-boot3/src/main/java/one/microstream/integrations/spring/boot/types/StorageFilesystem.java @@ -25,6 +25,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty; import one.microstream.integrations.spring.boot.types.aws.Aws; +import one.microstream.integrations.spring.boot.types.azure.Azure; import one.microstream.integrations.spring.boot.types.hazelcast.Hazelcast; import one.microstream.integrations.spring.boot.types.mongodb.Mongodb; import one.microstream.integrations.spring.boot.types.oracle.Oracle; @@ -41,6 +42,9 @@ public class StorageFilesystem @NestedConfigurationProperty private Aws aws; + @NestedConfigurationProperty + private Azure azure; + @NestedConfigurationProperty private Hazelcast hazelcast; @@ -81,6 +85,16 @@ public void setAws(final Aws aws) { this.aws = aws; } + + public Azure getAzure() + { + return this.azure; + } + + public void setAzure(final Azure azure) + { + this.azure = azure; + } public Hazelcast getHazelcast() {