return refs;
}
private SLPropertiesMatcher createMatcher(List<String> input)
throws UnsupportedEncodingException {
SLPropertiesMatcher matcher = null;
if (input != null && input.size() > 0) {
matcher = new SLPropertiesMatcher();
for (String pair : input) {
String[] assertion = URLDecoder.decode(pair, "UTF-8")
.split(",");
if (assertion.length == 2) {
matcher.addAssertion(assertion[0], assertion[1]);
}
}
}
return matcher;
}