*/
public void addCreateObject(ComponentPlugin plugin) throws NamingException
{
if (plugin instanceof CreateObjectCommand)
{
CreateObjectCommand command = (CreateObjectCommand)plugin;
Map<String, Attributes> objectsToCreate = command.getObjectsToCreate();
if (objectsToCreate == null || objectsToCreate.size() == 0)
return;
LdapContext ctx = getLdapContext();
for (Map.Entry<String, Attributes> e : objectsToCreate.entrySet())
{