Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

W-10590532-CustomerPropertiesResolver-update-44-dm #2591

Open
wants to merge 1 commit into
base: v4.4
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ public class SecureConfigurationPropertiesProviderFactory implements Configurati
}

@Override
public SecureConfigurationPropertiesProvider createProvider(ConfigurationParameters parameters,
public SecureConfigurationPropertiesProvider createProvider(ComponentAst providerElementDeclaration,
UnaryOperator<String> localResolver,
ResourceProvider externalResourceProvider) {
String file = parameters.getStringParameter("file");
String file = requireNonNull(providerElementDeclaration.getParameter(FILE_PARAMETER).getResolvedRawValue(),
..

String key = parameters.getStringParameter("key");
String key = requireNonNull(providerElementDeclaration.getParameter(KEY_PARAMETER).getResolvedRawValue(),
...

return new SecureConfigurationPropertiesProvider(..);
Expand Down