* @param record The parsed record.
* @throws LDAPException If there was an LDAP error.
*/
private void processRecord(final LDAPConnection connection,
final LDIFRecord record) throws LDAPException {
final LDIFContent content = record.getContent();
final int contentType = content.getType();
switch (contentType) {
case LDIFContent.MODDN_CONTENT:
this.renameEntry(connection, record.getDN(), (LDIFModDNContent) content);
break;
case LDIFContent.MODIFICATION_CONTENT: