p = passwordSystemProperty.getString();
}
username = u != null ? u.toString() : null;
password = p != null ? p.toString() : null;
PropertyMap props = urlInfo.getProperties();
props.putAll(env);
PropertyMap copyProps = new PropertyMap();
copyProps.putAll(props);
for (Iterator i = copyProps.entrySet().iterator(); i.hasNext();)
{
Map.Entry entry = (Map.Entry)i.next();
String property = (String)entry.getKey();
Object value = entry.getValue();