FileDocCategorySizeDatePackage
ChangeMasterPasswordCommand.javaAPI DocGlassfish v2 API5443Fri May 04 22:25:08 BST 2007com.sun.enterprise.cli.commands

ChangeMasterPasswordCommand

public class ChangeMasterPasswordCommand extends BaseLifeCycleCommand
This is a local command that creates a new domain
version
$Revision: 1.5 $

Fields Summary
private String
newMasterPassword
private String
masterPassword
Constructors Summary
public ChangeMasterPasswordCommand()
Creates new CreateDomainCommand


        
     
    
    
Methods Summary
public voidchangeMasterPassword(java.lang.String domainName)

        
        //WARNING!!! The code below is duplicated in admin-cli-ee ChangeMasterPasswordCommand.java.
        //I tried to share the code but ran into issues.
        DomainConfig config = getDomainConfig(domainName);                         
        DomainsManager mgr = getFeatureFactory().getDomainsManager();    
        //domain validation upfront (i.e. before we prompt)                      
        mgr.validateDomain(config, true);
        
        masterPassword = getMasterPassword(new RepositoryManager(), config);
        //getPassword(optionName, allowedOnCommandLine, readPrefsFile, readPasswordOptionFromPrefs, 
        //readMasterPasswordFile, mgr, config,
        //promptUser, confirm, validate)
        config.put(DomainConfig.K_MASTER_PASSWORD, masterPassword);
        mgr.validateMasterPassword(config);
        
        newMasterPassword = getNewMasterPassword();
        validateOptions();            
        Boolean saveMasterPassword = getSaveMasterPassword(null);        
        config.put(DomainConfig.K_NEW_MASTER_PASSWORD, newMasterPassword);
        config.put(DomainConfig.K_SAVE_MASTER_PASSWORD, saveMasterPassword);
        mgr.changeMasterPassword(config);        
        //END WARNING!!!
    
public voidrunCommand()
An abstract method that executes the command

throws
CommandException

        
        String domainName = null;
        try {                 
            setLoggerLevel();
            domainName = getDomainName();
            changeMasterPassword(domainName);
            CLILogger.getInstance().printDetailMessage(getLocalizedString("DomainPasswordChanged",
                new Object[] {domainName})); 
        } catch (Exception e) {
            displayExceptionMessage(e);
        }
    
public booleanvalidateOptions()
An abstract method that validates the options on the specification in the xml properties file

return
true if successfull

        super.validateOptions();

        //verify adminpassword is greater than 8 characters	
        if (!isPasswordValid(newMasterPassword)) {
            throw new CommandValidationException(getLocalizedString("PasswordLimit",
                new Object[]{NEW_MASTER_PASSWORD}));
        }
                
        return true;