// populate one with values from uPortal then, when the password reset
// is done (update handler) do a create instead of an update.
LogService.log(LogService.INFO, "[EnterpriseUserPasswordQueryHandler] EnterpriseUserPassword doesn't exist, using uPortal info.");
EnterpriseUserPassword eup = (EnterpriseUserPassword)getAppConfig().getObject(messageObjectName);
eup.setEnterpriseUser(eu);
Password p = eup.newPassword();
p.setValue("eupqhunknown");
p.setType("secure credential");
p.setEncryption("cleartext");
eup.setPassword(p);
// eup.create((PointToPointProducer)getAppConfig().getObject(producerName));
// LogService.log(LogService.INFO, "[EnterpriseUserPasswordQueryHandler] EnterpriseUserPassword was created.");
xml += eup.getXmlEnterpriseObject().toXmlString();