Package csw.params.commands
Class CommandResponse$
- java.lang.Object
-
- csw.params.commands.CommandResponse$
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Serializable
public class CommandResponse$ extends java.lang.Object implements scala.Serializable
The nature of CommandResponse as an intermediate response of command execution or a final response which could be positive or negative- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static CommandResponse$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description CommandResponse$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isFinal(CommandResponse.QueryResponse qr)
Tests a response to determine if it is a final command stateboolean
isIntermediate(CommandResponse.QueryResponse qr)
Tests a response to determine if it is an intermediate responseboolean
isNegative(CommandResponse.QueryResponse qr)
Tests a response to determine if it is a negative responseboolean
isPositive(CommandResponse.OnewayResponse or)
Test a OnewayResponse to determine if it is a positive responseboolean
isPositive(CommandResponse.QueryResponse qr)
Test a QueryResponse to determine if it is a positive responseCommandResponse.SubmitResponse
withRunId(Id id, CommandResponse.SubmitResponse response)
Transform a given CommandResponse to a response with the provided Id
-
-
-
Field Detail
-
MODULE$
public static final CommandResponse$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
withRunId
public CommandResponse.SubmitResponse withRunId(Id id, CommandResponse.SubmitResponse response)
Transform a given CommandResponse to a response with the provided Id- Parameters:
id
- the RunId for the new CommandResponseresponse
- the CommandResponse to be transformed- Returns:
- a CommandResponse that has runId as provided id
-
isFinal
public boolean isFinal(CommandResponse.QueryResponse qr)
Tests a response to determine if it is a final command state- Parameters:
qr
- response for testing- Returns:
- true if it is final
-
isPositive
public boolean isPositive(CommandResponse.QueryResponse qr)
Test a QueryResponse to determine if it is a positive response- Parameters:
qr
- response for testing- Returns:
- true if it is positive
-
isPositive
public boolean isPositive(CommandResponse.OnewayResponse or)
Test a OnewayResponse to determine if it is a positive response- Parameters:
or
- a OnewayResponse for testing- Returns:
- true if positive, false otherwise
-
isNegative
public boolean isNegative(CommandResponse.QueryResponse qr)
Tests a response to determine if it is a negative response- Parameters:
qr
- response for testing- Returns:
- true if it is negative
-
isIntermediate
public boolean isIntermediate(CommandResponse.QueryResponse qr)
Tests a response to determine if it is an intermediate response- Parameters:
qr
- response for testing- Returns:
- returns true if it is intermediate
-
-