Skip to content

Commit

Permalink
Add missing azure config
Browse files Browse the repository at this point in the history
  • Loading branch information
fh-ms committed Oct 5, 2023
1 parent d75049e commit 4140f87
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -40,6 +41,9 @@ public class StorageFilesystem

@NestedConfigurationProperty
private Aws aws;

@NestedConfigurationProperty
private Azure azure;

@NestedConfigurationProperty
private Hazelcast hazelcast;
Expand Down Expand Up @@ -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()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -41,6 +42,9 @@ public class StorageFilesystem
@NestedConfigurationProperty
private Aws aws;

@NestedConfigurationProperty
private Azure azure;

@NestedConfigurationProperty
private Hazelcast hazelcast;

Expand Down Expand Up @@ -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()
{
Expand Down

0 comments on commit 4140f87

Please sign in to comment.