Package org.jboss.as.cli.operation
Interface OperationCandidatesProvider
-
- All Known Implementing Classes:
CommandCandidatesProvider,DefaultOperationCandidatesProvider
public interface OperationCandidatesProviderProvider of candidates for the tab completion.- Author:
- Alexey Loubyansky
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,OperationRequestHeader>getHeaders(CommandContext ctx)Collection<String>getNodeNames(CommandContext ctx, OperationRequestAddress prefix)Collection<String>getNodeTypes(CommandContext ctx, OperationRequestAddress prefix)Collection<String>getOperationNames(CommandContext ctx, OperationRequestAddress prefix)Collection<CommandArgument>getProperties(CommandContext ctx, String operationName, OperationRequestAddress address)
-
-
-
Method Detail
-
getNodeNames
Collection<String> getNodeNames(CommandContext ctx, OperationRequestAddress prefix)
-
getNodeTypes
Collection<String> getNodeTypes(CommandContext ctx, OperationRequestAddress prefix)
-
getOperationNames
Collection<String> getOperationNames(CommandContext ctx, OperationRequestAddress prefix)
-
getProperties
Collection<CommandArgument> getProperties(CommandContext ctx, String operationName, OperationRequestAddress address)
-
getHeaders
Map<String,OperationRequestHeader> getHeaders(CommandContext ctx)
-
-