Interface WhiteListParser
-
- All Known Implementing Classes:
DefaultWhiteListParser
public interface WhiteListParser
Interface for an white list parser. This will take an white list string and parse it into a list of UriFilter rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<UriFilter>
parseWhiteList(java.lang.String whiteList)
Parses a list of host name and IP filters into UriFilter objects.
-
-
-
Method Detail
-
parseWhiteList
java.util.List<UriFilter> parseWhiteList(java.lang.String whiteList)
Parses a list of host name and IP filters into UriFilter objects.- Parameters:
whiteList
- the string to parse.- Returns:
- a list of UriFilters
-
-