Class StreamListenerErrorMessages
- java.lang.Object
-
- org.springframework.cloud.stream.binding.StreamListenerErrorMessages
-
public abstract class StreamListenerErrorMessages extends Object
- Author:
- Ilayaperumal Gopinathan
-
-
Field Summary
Fields Modifier and Type Field Description static StringAMBIGUOUS_MESSAGE_HANDLER_METHOD_ARGUMENTSError message when an ambiguous message handler method argument was found.static StringATLEAST_ONE_OUTPUTError message when there were no outputs specified.static StringCONDITION_ON_DECLARATIVE_METHODError message when condition was set in declarative mode.static StringCONDITION_ON_METHOD_RETURNING_VALUEError message when condition was set for methods that return a value.static StringINPUT_AT_STREAM_LISTENERError message when @StreamListener was used with @Input.static StringINVALID_DECLARATIVE_METHOD_PARAMETERSError message when invalid declarative method parameters were set.static StringINVALID_INBOUND_NAMEError message when the inbound name was invalid.static StringINVALID_INPUT_OUTPUT_METHOD_PARAMETERSError message when the input or output annotation got placed on a method parameter.static StringINVALID_INPUT_VALUE_WITH_OUTPUT_METHOD_PARAMError message when invalid input value with output method parameter was set.static StringINVALID_INPUT_VALUESError message when invalid input values where set.static StringINVALID_OUTBOUND_NAMEError message when the outbound name was invalid.static StringINVALID_OUTPUT_VALUESError message when invalid output values were set.static StringMULTIPLE_VALUE_RETURNING_METHODSError message when multiple value returning methods were provided.static StringNO_INPUT_DESTINATIONError message when no input destination was provided.static StringRETURN_TYPE_MULTIPLE_OUTBOUND_SPECIFIEDError message when return type was specified for multiple outbound targets.static StringRETURN_TYPE_NO_OUTBOUND_SPECIFIEDError message when invalid input value with output method parameter was set.static StringSEND_TO_EMPTY_DESTINATIONError message when empty destination was provided.static StringSEND_TO_MULTIPLE_DESTINATIONSError message when multiple destinations were specified.
-
Constructor Summary
Constructors Constructor Description StreamListenerErrorMessages()
-
-
-
Field Detail
-
INVALID_INBOUND_NAME
public static final String INVALID_INBOUND_NAME
Error message when the inbound name was invalid.- See Also:
- Constant Field Values
-
INVALID_OUTBOUND_NAME
public static final String INVALID_OUTBOUND_NAME
Error message when the outbound name was invalid.- See Also:
- Constant Field Values
-
ATLEAST_ONE_OUTPUT
public static final String ATLEAST_ONE_OUTPUT
Error message when there were no outputs specified.- See Also:
- Constant Field Values
-
SEND_TO_MULTIPLE_DESTINATIONS
public static final String SEND_TO_MULTIPLE_DESTINATIONS
Error message when multiple destinations were specified.- See Also:
- Constant Field Values
-
SEND_TO_EMPTY_DESTINATION
public static final String SEND_TO_EMPTY_DESTINATION
Error message when empty destination was provided.- See Also:
- Constant Field Values
-
INVALID_INPUT_OUTPUT_METHOD_PARAMETERS
public static final String INVALID_INPUT_OUTPUT_METHOD_PARAMETERS
Error message when the input or output annotation got placed on a method parameter.- See Also:
- Constant Field Values
-
NO_INPUT_DESTINATION
public static final String NO_INPUT_DESTINATION
Error message when no input destination was provided.- See Also:
- Constant Field Values
-
AMBIGUOUS_MESSAGE_HANDLER_METHOD_ARGUMENTS
public static final String AMBIGUOUS_MESSAGE_HANDLER_METHOD_ARGUMENTS
Error message when an ambiguous message handler method argument was found.- See Also:
- Constant Field Values
-
INVALID_INPUT_VALUES
public static final String INVALID_INPUT_VALUES
Error message when invalid input values where set.- See Also:
- Constant Field Values
-
INVALID_INPUT_VALUE_WITH_OUTPUT_METHOD_PARAM
public static final String INVALID_INPUT_VALUE_WITH_OUTPUT_METHOD_PARAM
Error message when invalid input value with output method parameter was set.- See Also:
- Constant Field Values
-
INVALID_OUTPUT_VALUES
public static final String INVALID_OUTPUT_VALUES
Error message when invalid output values were set.- See Also:
- Constant Field Values
-
CONDITION_ON_DECLARATIVE_METHOD
public static final String CONDITION_ON_DECLARATIVE_METHOD
Error message when condition was set in declarative mode.- See Also:
- Constant Field Values
-
CONDITION_ON_METHOD_RETURNING_VALUE
public static final String CONDITION_ON_METHOD_RETURNING_VALUE
Error message when condition was set for methods that return a value.- See Also:
- Constant Field Values
-
MULTIPLE_VALUE_RETURNING_METHODS
public static final String MULTIPLE_VALUE_RETURNING_METHODS
Error message when multiple value returning methods were provided.- See Also:
- Constant Field Values
-
INPUT_AT_STREAM_LISTENER
public static final String INPUT_AT_STREAM_LISTENER
Error message when @StreamListener was used with @Input.- See Also:
- Constant Field Values
-
RETURN_TYPE_NO_OUTBOUND_SPECIFIED
public static final String RETURN_TYPE_NO_OUTBOUND_SPECIFIED
Error message when invalid input value with output method parameter was set.- See Also:
- Constant Field Values
-
RETURN_TYPE_MULTIPLE_OUTBOUND_SPECIFIED
public static final String RETURN_TYPE_MULTIPLE_OUTBOUND_SPECIFIED
Error message when return type was specified for multiple outbound targets.- See Also:
- Constant Field Values
-
INVALID_DECLARATIVE_METHOD_PARAMETERS
public static final String INVALID_DECLARATIVE_METHOD_PARAMETERS
Error message when invalid declarative method parameters were set.- See Also:
- Constant Field Values
-
-