String query = url.getQuery();
if (query == null) {
query = "";
}
String props = StringUtil.removePrefix(query, "?").replace('&', ',');
properties = new NamedValueList(props).getProperties();
} catch (Exception ex) {
throw new SystemException(ex);
}
}