Class StopLocalInstanceCommand
- 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.StopLocalInstanceCommand
-
- All Implemented Interfaces:
org.glassfish.hk2.api.PostConstruct
@Service(name="stop-local-instance") @PerLookup public class StopLocalInstanceCommand extends LocalInstanceCommand
Stop a local server instance.- Author:
- Bill Shannon, Byron Nevins
-
-
Field Summary
-
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.servermgmt.cli.LocalServerCommand
DEFAULT_MASTER_PASSWORD
-
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 StopLocalInstanceCommand()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected intdoRemoteCommand()Execute the actual stop-domain command.protected intexecuteCommand()Execute the command using the options in options and the operands in operands.protected voidinitInstance()Big trouble if you allow the super implementation to run because it creates directories.protected intinstanceNotRunning()Print message and return exit code when we detect that the DAS is not running.protected booleanmkdirs(File f)Override this method if your class does NOT want to create directoriesprotected 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, isDirectory, setDasDefaults, setInstanceName, setServerDirs, 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 CommandException, CommandValidationExceptionDescription 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 classLocalInstanceCommand- Throws:
CommandException- if execution of the command failsCommandValidationException- if there's something wrong with the options or arguments
-
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
-
initInstance
protected void initInstance() throws CommandExceptionBig trouble if you allow the super implementation to run because it creates directories. If this command is called with an instance that doesn't exist -- new dirs will be created which can cause other problems.- Overrides:
initInstancein classLocalInstanceCommand- Throws:
CommandException
-
executeCommand
protected int executeCommand() throws CommandException, CommandValidationExceptionDescription copied from class:CLICommandExecute the command using the options in options and the operands in operands.- Specified by:
executeCommandin classCLICommand- Returns:
- the exit code
- Throws:
CommandException- if execution of the command failsCommandValidationException- if there's something wrong with the options or arguments
-
instanceNotRunning
protected int instanceNotRunning() throws CommandExceptionPrint message and return exit code when we detect that the DAS is not running.- Throws:
CommandException
-
doRemoteCommand
protected int doRemoteCommand() throws CommandExceptionExecute the actual stop-domain command.- Throws:
CommandException
-
-