Package csw.params.commands
Interface CommandResponse
-
- All Superinterfaces:
CommandSerializable
- All Known Subinterfaces:
CommandResponse.MatchingResponse
,CommandResponse.OnewayResponse
,CommandResponse.QueryResponse
,CommandResponse.SubmitResponse
,CommandResponse.ValidateCommandResponse
,CommandResponse.ValidateResponse
- All Known Implementing Classes:
CommandResponse.Accepted
,CommandResponse.Cancelled
,CommandResponse.CommandNotAvailable
,CommandResponse.Completed
,CommandResponse.CompletedWithResult
,CommandResponse.Error
,CommandResponse.Invalid
,CommandResponse.Locked
,CommandResponse.Started
public interface CommandResponse extends CommandSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CommandResponse.Accepted
Represents a final response stating acceptance of a command receivedstatic class
CommandResponse.Accepted$
static class
CommandResponse.Cancelled
Represents a negative response that describes the cancellation of commandstatic class
CommandResponse.Cancelled$
static class
CommandResponse.CommandNotAvailable
A negative response stating that a command with given runId is not available or cannot be locatedstatic class
CommandResponse.CommandNotAvailable$
static class
CommandResponse.Completed
Represents a positive response stating completion of commandstatic class
CommandResponse.Completed$
static class
CommandResponse.CompletedWithResult
Represents a positive response stating completion of commandstatic class
CommandResponse.CompletedWithResult$
static class
CommandResponse.Error
Represents a negative response that describes an error in executing the commandstatic class
CommandResponse.Error$
static class
CommandResponse.Invalid
Represents a negative response invalidating a command receivedstatic class
CommandResponse.Invalid$
static class
CommandResponse.Locked
Represents a negative response stating that a component is Locked and command was not validated or executedstatic class
CommandResponse.Locked$
static interface
CommandResponse.MatchingResponse
MatchingResponse is returned by matchers.static interface
CommandResponse.OnewayResponse
OnewayResponse is returned by Oneway message which calls the onOneway handler Responses returned can be Accepted, Invalid, Lockedstatic interface
CommandResponse.QueryResponse
QueryResponse is returned by CommandService query Values can be Invalid, Started, Completed, CompletedWithResult, Error, Cancelled, Locked, CommandNotAvailablestatic class
CommandResponse.Started
Represents an intermediate response stating a long running command has been startedstatic class
CommandResponse.Started$
static interface
CommandResponse.SubmitResponse
SubmitResponse is returned by Submit message which calls the onSubmit handler Responses returned can be Invalid, Started, Completed, CompletedWithResult, Error, Cancelled, Lockedstatic interface
CommandResponse.ValidateCommandResponse
ValidationResponse is returned by validateCommand handler.static interface
CommandResponse.ValidateResponse
ValidateOnlyResponse is returned by Validate message, which calls validateCommand handler Values can be Invalid, Accepted, Locked.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Id
runId()
A helper method to get the runId for this command response
-
-
-
Method Detail
-
runId
Id runId()
A helper method to get the runId for this command response- Returns:
- the runId of command for which this response is created
-
-