Skip to content

Commit 33cfac6

Browse files
committed
rename parameter configFilePatterns in ConfigFileRetriever interface
1 parent b9be058 commit 33cfac6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

accesscontroltool-bundle/src/main/java/biz/netcentric/cq/tools/actool/configreader/ConfigFilesRetriever.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public interface ConfigFilesRetriever {
2525
/** Returns yaml configurations from a package. This will only return configuration entries which apply to the current run mode
2626
*
2727
* @param archive the Vault Package
28-
* @param configFilePaths regular expression to limit the paths where configuration files are looked
28+
* @param configFilePatterns collection of regular expression to limit which configuration files are used.
2929
* @return map of yaml configurations by their path location
3030
* @throws Exception if things go wrong */
31-
Map<String, String> getConfigFileContentFromPackage(Archive archive, Collection<String> configFilePaths) throws Exception;
31+
Map<String, String> getConfigFileContentFromPackage(Archive archive, Collection<String> configFilePatterns) throws Exception;
3232

3333
}

0 commit comments

Comments
 (0)