ExtLibUtil.getViewScope().put("javaTest", contact.getNoteID());
}
public void createPaul() {
Session s = Factory.getSession();
Database currDb = s.getCurrentDatabase();
Utils.addAllListeners(currDb);
HashMap<String, Object> fieldsMap = new HashMap<String, Object>();
fieldsMap.put("Form", "Contact");
fieldsMap.put("FirstName", "Paul");
fieldsMap.put("LastName", "Withers");
fieldsMap.put("Email", "lordOfPrettyGood@worldOfAweso.me");
fieldsMap.put("City", "Washington");
fieldsMap.put("State", "WA");
Document contact = currDb.createDocument(fieldsMap);
contact.save();
ExtLibUtil.getViewScope().put("javaTest", contact.getNoteID());
}