ContactController contactCtl = new ContactController();
Contact contact = getContact();
Communication communication = getCommunication();
//Create communication (needed for new object)
communication = comCtl.update(communication);
//Insert the participants after converting the array to List
java.util.List<Contact> participants = new ArrayList<Contact>();
participants.add(contact);
if (selected != null) {