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

Add utility method to get authenticator property values from properties array #4987

Merged
merged 2 commits into from
Oct 11, 2023
Merged
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 @@ -939,6 +939,25 @@ public static List<String> getPropertyValuesForNameStartsWith(FederatedAuthentic
return propValueSet;
}

/**
* Get a list of property values for a given property name prefix.
*
* @param properties Authenticator config properties to iterate with.
* @param propNameStartsWith the prefix of the property name.
* @return the list of values which starts with the propNameStartsWith.
*/
public static List<String> getPropertyValuesForNameStartsWith(Property[] properties, String propNameStartsWith) {

List<String> propValueSet = new ArrayList<>();
for (Property property : properties) {
if (property.getName().startsWith(propNameStartsWith)) {
propValueSet.add(property.getValue());
}
}

return propValueSet;
}

public static String getPropertyValue(Property[] properties, String propertyName) {

Property property = getProperty(properties, propertyName);
Expand Down
Loading