Package com.atlassian.bitbucket.scm
Interface CommandAware
public interface CommandAware
An interface to be implemented by a
CommandErrorHandler
, CommandInputHandler
or
CommandOutputHandler
that wishes to be provided the Command
it will be processing.
The command will be set before the handler's relevant process
method is called.- Since:
- 6.1
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setCommand
(Command<?> command) Called prior toprocess
to provide theCommand
the handler will be processing.
-
Method Details
-
setCommand
Called prior toprocess
to provide theCommand
the handler will be processing.- Parameters:
command
- the command for which the handler will process input or output- See Also:
-