If you wish, you can write the username / password to disk. After that, restore it and set the login / password to form (or install and send) via javascript, for example.
String javascript = new StringBuilder()
.append("function submitData() {if(document.getElementsByName('email') == undefined) return; document.getElementsByName('email')[0].value='")
.append(String.copyValueOf(authData.getEmail()))
.append("'; document.getElementsByName('pass')[0].value='").append(String.copyValueOf(authData.getPassword()))
.append("'; document.forms[0].submit();} submitData();").toString();
webEngine.executeScript(javascript);