/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at legal-notices/CDDLv1_0.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2009 Sun Microsystems, Inc.
*/
/**
* Modify the DN of an entry.
* The operation can be a modDN (tree move) or a modRDN.
* The function returns the ldap error code
*/
public class modifyDn {
/**
* Main.
*
* @param args arguments
*/
}
}
}
credential = val1;
}
dnToModify = val1;
}
}
deleteOldRDN = val1;
}
newSuperior = val1;
}
k++;
}
"com.sun.jndi.ldap.LdapCtxFactory");
// Whether the old RDN attribute values are to be retained
// as attributes of the entry, or deleted from the entry.
// Default is 'true'
if (deleteOldRDN != null) {
}
try {
// newRDN = same as old rdn
}
if ( newSuperior != null ) {
// modDN operation => new parent = newSuperior
} else {
// modRDN operation => new parent = old parent
}
// connect to server
// rename the entry
} catch (CommunicationException e1) {
} catch (NamingException e2) {
}
// No error, the modify is success
if ( errorMessage == null ) {
errorCode="0";
} else {
if ( ind > 0 ) {
} else errorCode="0";
}
}
}