Class CreateLocalInstanceCommand
- java.lang.Object
-
- com.sun.enterprise.admin.cli.CLICommand
-
- com.sun.enterprise.admin.servermgmt.cli.LocalServerCommand
-
- com.sun.enterprise.admin.cli.cluster.LocalInstanceCommand
-
- com.sun.enterprise.admin.cli.cluster.CreateLocalInstanceFilesystemCommand
-
- com.sun.enterprise.admin.cli.cluster.CreateLocalInstanceCommand
-
- All Implemented Interfaces:
org.glassfish.hk2.api.PostConstruct
@Service(name="create-local-instance") @PerLookup public final class CreateLocalInstanceCommand extends CreateLocalInstanceFilesystemCommand
This is a local command that calls the primitive remote _register-instance to add the entries in domain.xml and then the primitive local command _create-instance-filesystem to create the empty directory structure and das.properties
-
-
Field Summary
-
Fields inherited from class com.sun.enterprise.admin.cli.cluster.CreateLocalInstanceFilesystemCommand
dockerNode, extraTerse, instanceName0, setDasDefaultsOnly
-
Fields inherited from class com.sun.enterprise.admin.cli.cluster.LocalInstanceCommand
checkOneAndOnly, domainName, instanceDir, instanceName, isCreateInstanceFilesystem, node, nodeDir, nodeDirChild, nodeDirRoot
-
Fields inherited from class com.sun.enterprise.admin.cli.CLICommand
argv, ASADMIN, commandModel, CONNECTION_ERROR, env, ERROR, INVALID_COMMAND_ERROR, lineReader, logger, metadataErrors, name, operands, options, passwords, programOpts, SUCCESS, terminal, WARNING
-
-
Constructor Summary
Constructors Constructor Description CreateLocalInstanceCommand()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcreateMasterPasswordFile(String masterPassword)Create the master password keystore.protected intexecuteCommand()Execute the command using the options in options and the operands in operands.protected booleanisDirectory(File f)Override this method if your class does NOT want CommandException thrown if directory does not exist.protected booleanmkdirs(File f)Override this method if your class does NOT want to create directoriesprotected booleansetServerDirs()Override this method if your class does NOT want to set ServerDirsprotected voidvalidate()The validate method can be used by a subclass to validate that the type and quantity of parameters and operands matches the requirements for this command.-
Methods inherited from class com.sun.enterprise.admin.cli.cluster.LocalInstanceCommand
getDasProperties, getInstanceDirs, getInstanceName, getMasterPasswordFile, getNodeInstallDir, getNodeProperties, getProductRootPath, initInstance, setDasDefaults, setInstanceName, validateDasOptions, whackFilesystem
-
Methods inherited from class com.sun.enterprise.admin.servermgmt.cli.LocalServerCommand
checkAdditionalTrustAndKeyStores, checkForSpecialFiles, dataGridEncryptionEnabled, getAdminAddress, getAdminAddress, getDomainXml, getInstallRootPath, getMasterPassword, getPrevPid, getServerDirs, getServerPid, getUptime, isLocal, isRemote, isRestartable, isRunning, isRunning, isThisServer, loadAndVerifyKeystore, readFromMasterPasswordFile, resetServerDirs, setLocalPassword, setServerDirs, unsetLocalPassword, verifyMasterPassword, waitForRestart, waitForRestart
-
Methods inherited from class com.sun.enterprise.admin.cli.CLICommand
buildLineReader, buildTerminal, checkHelp, closeTerminal, execute, execute, expandManPage, getBooleanOption, getBriefCommandUsage, getCommand, getCommand, getCommandScope, getCommandUsage, getManPage, getName, getOperandModel, getOption, getOptions, getPassword, getPassword, getProgramOptions, getSystemProperties, getSystemProperty, getUsage, initializeLogger, initializePasswords, inject, newLineReaderBuilder, ok, parse, postConstruct, prepare, prevalidate, printExceptionStackTrace, processProgramOptions, quote, readPassword, setCommandScope, toString, usageOptions
-
-
-
-
Method Detail
-
validate
protected void validate() throws CommandExceptionDescription copied from class:CLICommandThe validate method can be used by a subclass to validate that the type and quantity of parameters and operands matches the requirements for this command.- Overrides:
validatein classCreateLocalInstanceFilesystemCommand- Throws:
CommandException- if execution of the command failsCommandValidationException- if there's something wrong with the options or arguments
-
executeCommand
protected int executeCommand() throws CommandException, CommandValidationExceptionDescription copied from class:CLICommandExecute the command using the options in options and the operands in operands.- Overrides:
executeCommandin classCreateLocalInstanceFilesystemCommand- Returns:
- the exit code
- Throws:
CommandException- if execution of the command failsCommandValidationException- if there's something wrong with the options or arguments
-
createMasterPasswordFile
protected void createMasterPasswordFile(String masterPassword) throws CommandException
Create the master password keystore. This routine can also modify the master password if the keystore already exists- Parameters:
masterPassword-- Throws:
CommandException
-
mkdirs
protected boolean mkdirs(File f)
Description copied from class:LocalInstanceCommandOverride this method if your class does NOT want to create directories- Overrides:
mkdirsin classLocalInstanceCommand- Parameters:
f- the directory to create- Returns:
- true iff the directory was created
-
isDirectory
protected boolean isDirectory(File f)
Description copied from class:LocalInstanceCommandOverride this method if your class does NOT want CommandException thrown if directory does not exist.- Overrides:
isDirectoryin classLocalInstanceCommand- Parameters:
f- directory to check
-
setServerDirs
protected boolean setServerDirs()
Description copied from class:LocalInstanceCommandOverride this method if your class does NOT want to set ServerDirs- Overrides:
setServerDirsin classLocalInstanceCommand
-
-