Interface ResponseMessage
-
- All Superinterfaces:
VersionedMessage
public interface ResponseMessage extends VersionedMessage
The result of fulfilling a request on the server.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
GENERAL_FAILURE
static java.lang.String
INVOCATION_RESULTS
static java.lang.String
OPERATIONS
static java.lang.String
STATUS_CODES
static java.lang.String
VIOLATIONS
-
Fields inherited from interface com.google.web.bindery.requestfactory.shared.messages.VersionedMessage
VERSION
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerFailureMessage
getGeneralFailure()
java.util.List<Splittable>
getInvocationResults()
java.util.List<OperationMessage>
getOperations()
java.util.List<java.lang.Boolean>
getStatusCodes()
java.util.List<ViolationMessage>
getViolations()
void
setGeneralFailure(ServerFailureMessage failure)
void
setInvocationResults(java.util.List<Splittable> value)
void
setOperations(java.util.List<OperationMessage> value)
void
setStatusCodes(java.util.List<java.lang.Boolean> value)
void
setViolations(java.util.List<ViolationMessage> value)
-
Methods inherited from interface com.google.web.bindery.requestfactory.shared.messages.VersionedMessage
getVersion, setVersion
-
-
-
-
Field Detail
-
GENERAL_FAILURE
static final java.lang.String GENERAL_FAILURE
- See Also:
- Constant Field Values
-
INVOCATION_RESULTS
static final java.lang.String INVOCATION_RESULTS
- See Also:
- Constant Field Values
-
OPERATIONS
static final java.lang.String OPERATIONS
- See Also:
- Constant Field Values
-
STATUS_CODES
static final java.lang.String STATUS_CODES
- See Also:
- Constant Field Values
-
VIOLATIONS
static final java.lang.String VIOLATIONS
- See Also:
- Constant Field Values
-
-
Method Detail
-
getGeneralFailure
@PropertyName("F") ServerFailureMessage getGeneralFailure()
-
getInvocationResults
@PropertyName("I") java.util.List<Splittable> getInvocationResults()
-
getOperations
@PropertyName("O") java.util.List<OperationMessage> getOperations()
-
getStatusCodes
@PropertyName("S") java.util.List<java.lang.Boolean> getStatusCodes()
-
getViolations
@PropertyName("X") java.util.List<ViolationMessage> getViolations()
-
setGeneralFailure
@PropertyName("F") void setGeneralFailure(ServerFailureMessage failure)
-
setInvocationResults
@PropertyName("I") void setInvocationResults(java.util.List<Splittable> value)
-
setOperations
@PropertyName("O") void setOperations(java.util.List<OperationMessage> value)
-
setStatusCodes
@PropertyName("S") void setStatusCodes(java.util.List<java.lang.Boolean> value)
-
setViolations
@PropertyName("X") void setViolations(java.util.List<ViolationMessage> value)
-
-