org.springframework.boot.BootstrapContext

Here are the examples of the java api org.springframework.boot.BootstrapContext taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

19 Source : AwsSecretsManagerConfigDataLocationResolver.java
with Apache License 2.0
from awspring

protected AWSSecretsManager createAwsSecretsManagerClient(BootstrapContext context) {
    AwsSecretsManagerProperties properties = context.get(AwsSecretsManagerProperties.clreplaced);
    return AwsSecretsManagerBootstrapConfiguration.createSecretsManagerClient(properties);
}

19 Source : AwsParamStoreConfigDataLocationResolver.java
with Apache License 2.0
from awspring

protected AWSSimpleSystemsManagement createSimpleSystemManagementClient(BootstrapContext context) {
    AwsParamStoreProperties properties = context.get(AwsParamStoreProperties.clreplaced);
    return AwsParamStoreBootstrapConfiguration.createSimpleSystemManagementClient(properties);
}