FileDocCategorySizeDatePackage
rename.javaAPI DocExample1438Wed Apr 05 11:25:42 BST 2000None

rename

public class rename extends Object implements Command

Fields Summary
Constructors Summary
Methods Summary
public voidexecute(javax.naming.Context c, java.util.Vector v)

            
        // check to see if we have all the args we need to rename
        if (v.isEmpty())
            throw new CommandException(new Exception(), "No names specified");
        else if (v.elementAt(1) == null)
            throw new CommandException(new Exception(), 
                "Only one name specified");

        String oldName = (String)v.firstElement();
        String newName = (String)v.elementAt(1);
        
        try {
            c.rename(oldName, newName);
            System.out.println("Renamed " + oldName + " to " + newName);
        }
        catch (NamingException ne) {
            throw new CommandException(ne, "Couldn't rename " 
                + oldName + " to " + newName);
        }
    
public voidhelp()

 System.out.println("Usage: rename [old name] [new name]");