This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixing Pagination, Fixing Partial Load * Adding Client Modifier * Fixing Empty Label Issue * Updated Readme * Makes \0 a diffrent constant then {\0} * Adding Missing logs
- Loading branch information
Showing
19 changed files
with
279 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...rc/main/java/com/microsoft/azure/spring/cloud/config/ConfigurationClientBuilderSetup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See LICENSE in the project root for | ||
* license information. | ||
*/ | ||
package com.microsoft.azure.spring.cloud.config; | ||
|
||
|
||
import com.azure.data.appconfiguration.ConfigurationClientBuilder; | ||
|
||
public interface ConfigurationClientBuilderSetup { | ||
|
||
public void setup(ConfigurationClientBuilder builder, String endpoint); | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
...onfig/src/main/java/com/microsoft/azure/spring/cloud/config/SecretClientBuilderSetup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See LICENSE in the project root for | ||
* license information. | ||
*/ | ||
package com.microsoft.azure.spring.cloud.config; | ||
|
||
import com.azure.security.keyvault.secrets.SecretClientBuilder; | ||
|
||
public interface SecretClientBuilderSetup { | ||
|
||
public void setup(SecretClientBuilder builder, String uri); | ||
|
||
} |
Oops, something went wrong.