// Persist it
this.getEntityManager().persist(faxNumber);
+ // Flush it
+ this.getEntityManager().flush();
+
// Find contact
Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
// Persist it
this.getEntityManager().persist(landLineNumber);
+ // Flush it
+ this.getEntityManager().flush();
+
// Find contact
Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
// Persist it
this.getEntityManager().persist(mobileNumber);
+ // Flush it
+ this.getEntityManager().flush();
+
// Find contact
Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());