* The conference phone call log to be copied
* @return A copy of the conference phone call log
*/
private ConferencePhoneCallLog copyConferencePhoneCallLog(
final ConferencePhoneCallLog callLog) {
final ConferencePhoneCallLog newLog =
new ConferencePhoneCallLog(new Date(callLog.getDate()
.getTime()), callLog.getDuration(), callLog
.getStatus(), new PhoneCallLogID(callLog
.getParticipantAt(0).getNumber()),
new PhoneCallLogID(callLog.getParticipantAt(1)
.getNumber()), callLog.getNotes());
final int numParticipants = callLog.numberOfParticipants();
for (int i = 2; i < numParticipants; ++i) {
newLog.addParticipant(new PhoneCallLogID(callLog
.getParticipantAt(i).getNumber()));
}
return newLog;
}