String authPassword = "";
String preferredAuthScheme = HttpAuthenticatorFactory.BASIC;
String encoding = "";
String formType = "";
String formParameters = "";
PropertyList restrictToHosts = new PropertyList();
if (rs3.next()) {
authUsername = rs3.getString("authentication_username");
authPassword = rs3.getString("authentication_password");
preferredAuthScheme = rs3.getString("preferred_authentication_scheme");
encoding = rs3.getString("encoding");
restrictToHosts.setAsPropertyText(rs3.getString("restrict_to_hosts"));
formType = rs3.getString("form_type");
formParameters = rs3.getString("form_parameters");
}
return new ReplacementProxyWebForward(realmID, id, url, name, description, category, authUsername, authPassword,
preferredAuthScheme, encoding, restrictToHosts, formType, formParameters, autoStart, created, amended);