Class MessageValidator
java.lang.Object
org.springframework.integration.test.support.AbstractResponseValidator<Message<?>>
org.springframework.integration.test.support.MessageValidator
- All Implemented Interfaces:
MessageHandler
Validate a message. Create an anonymous instance or subclass to
implement the validateMessage() method
- Author:
- David Turanski
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected final boolean
If true will extract the payload as the parameter for validateResponse()protected abstract void
validateMessage
(Message<?> message) Implement this method to validate the messageprotected final void
validateResponse
(Message<?> response) Implement this method to validate the response (Message or Payload)Methods inherited from class org.springframework.integration.test.support.AbstractResponseValidator
getLastMessage, handleMessage
-
Constructor Details
-
MessageValidator
public MessageValidator()
-
-
Method Details
-
extractPayload
protected final boolean extractPayload()Description copied from class:AbstractResponseValidator
If true will extract the payload as the parameter for validateResponse()- Specified by:
extractPayload
in classAbstractResponseValidator<Message<?>>
- Returns:
- true to extract the payload; false to process the message.
-
validateResponse
Description copied from class:AbstractResponseValidator
Implement this method to validate the response (Message or Payload)- Specified by:
validateResponse
in classAbstractResponseValidator<Message<?>>
- Parameters:
response
- The response.
-
validateMessage
Implement this method to validate the message- Parameters:
message
- The message.
-