Package com.sun.enterprise.admin.util
Class CommandModelData
- java.lang.Object
-
- org.glassfish.api.admin.CommandModel
-
- com.sun.enterprise.admin.util.CommandModelData
-
- Direct Known Subclasses:
CachedCommandModel
public class CommandModelData extends CommandModel
A command and parameter model that allows the data to be supplied directly.- Author:
- Jerome Dochez, Bill Shannon
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCommandModelData.ParamDataA Param annotation simulated with data.static classCommandModelData.ParamModelDataA parameter model that's just data.-
Nested classes/interfaces inherited from class org.glassfish.api.admin.CommandModel
CommandModel.ParamModel
-
-
Field Summary
Fields Modifier and Type Field Description booleandashOkbooleanmanagedJob
-
Constructor Summary
Constructors Constructor Description CommandModelData(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(CommandModel.ParamModel model)Add the ParamModel to this CommandModel.ExecuteOngetClusteringAttributes()Return the cluster parameters for this command or null if none are specified and defaults should be used.ClassgetCommandClass()Return the class that defines the command.StringgetCommandName()Returns the command name as it is typed by the user.StringgetLocalizedDescription()Returns a localized description for this commandCommandModel.ParamModelgetModelFor(String paramName)Returns the parameter model for a particular parameterCollection<String>getParametersNames()Returns a collection of parameter names supported by this admininstrative commandStringgetUsageText()Returns a localized usage text for this command or null if the usage text should be generated from this model.booleanisManagedJob()This command is managed job.booleanunknownOptionsAreOperands()Should an unknown option be considered an operand by asadmin?-
Methods inherited from class org.glassfish.api.admin.CommandModel
getParameters, getParamName
-
-
-
-
Constructor Detail
-
CommandModelData
public CommandModelData(String name)
-
-
Method Detail
-
getLocalizedDescription
public String getLocalizedDescription()
Description copied from class:CommandModelReturns a localized description for this command- Specified by:
getLocalizedDescriptionin classCommandModel- Returns:
- a localized displayable description
-
getUsageText
public String getUsageText()
Description copied from class:CommandModelReturns a localized usage text for this command or null if the usage text should be generated from this model.- Specified by:
getUsageTextin classCommandModel- Returns:
- the usage text
-
getCommandName
public String getCommandName()
Description copied from class:CommandModelReturns the command name as it is typed by the user.- Specified by:
getCommandNamein classCommandModel- Returns:
- the command name
-
getModelFor
public CommandModel.ParamModel getModelFor(String paramName)
Description copied from class:CommandModelReturns the parameter model for a particular parameter- Specified by:
getModelForin classCommandModel- Parameters:
paramName- the requested parameter model name- Returns:
- the parameter model if the command supports a parameter of the passed name or null if not.
-
getParametersNames
public Collection<String> getParametersNames()
Description copied from class:CommandModelReturns a collection of parameter names supported by this admininstrative command- Specified by:
getParametersNamesin classCommandModel- Returns:
- all the command's paramter names.
-
getCommandClass
public Class getCommandClass()
Description copied from class:CommandModelReturn the class that defines the command. Normally this will be the class that provides the implementation of the command, but for generic CRUD commands it might be the config class that defines the command. The command class is used to locate resources related to the command, e.g., the command's man page. If the command model isn't associated with a command class, null is returned.- Specified by:
getCommandClassin classCommandModel- Returns:
- the command class, or null if none
-
getClusteringAttributes
public ExecuteOn getClusteringAttributes()
Description copied from class:CommandModelReturn the cluster parameters for this command or null if none are specified and defaults should be used.- Specified by:
getClusteringAttributesin classCommandModel- Returns:
- a
ExecuteOnannotation instance or null
-
isManagedJob
public boolean isManagedJob()
Description copied from class:CommandModelThis command is managed job. It is preferred to listen using SSE in case of remote execution.- Specified by:
isManagedJobin classCommandModel- Returns:
trueonly if command is @ManagedJob
-
unknownOptionsAreOperands
public boolean unknownOptionsAreOperands()
Should an unknown option be considered an operand by asadmin?- Overrides:
unknownOptionsAreOperandsin classCommandModel- Returns:
- true if unknown options are operands.
-
add
public void add(CommandModel.ParamModel model)
Add the ParamModel to this CommandModel.- Specified by:
addin classCommandModel- Parameters:
model- the new param model to be added
-
-