INT-4131: Fix @Since (AMQP)

JIRA: https://jira.spring.io/browse/INT-4131

Feature was backported to 4.3.x.
This commit is contained in:
Gary Russell
2017-01-16 10:26:14 -05:00
parent c886b3bf68
commit 00b2e7d102

View File

@@ -198,7 +198,7 @@ public abstract class AbstractAmqpOutboundEndpoint extends AbstractReplyProducin
* RabbitMQ delayed message exchange plugin. By default, the {@link AmqpHeaders#DELAY}
* header (if present) is mapped; setting the delay here overrides that value.
* @param delay the delay.
* @since 5.0
* @since 4.3.5
*/
public void setDelay(int delay) {
this.delayExpression = new ValueExpression<>(delay);
@@ -209,7 +209,7 @@ public abstract class AbstractAmqpOutboundEndpoint extends AbstractReplyProducin
* RabbitMQ delayed message exchange plugin. By default, the {@link AmqpHeaders#DELAY}
* header (if present) is mapped; setting the expression here overrides that value.
* @param delayExpression the expression.
* @since 5.0
* @since 4.3.5
*/
public void setDelayExpression(Expression delayExpression) {
this.delayExpression = delayExpression;
@@ -220,7 +220,7 @@ public abstract class AbstractAmqpOutboundEndpoint extends AbstractReplyProducin
* RabbitMQ delayed message exchange plugin. By default, the {@link AmqpHeaders#DELAY}
* header (if present) is mapped; setting the expression here overrides that value.
* @param delayExpression the expression.
* @since 5.0
* @since 4.3.5
*/
public void setDelayExpressionString(String delayExpression) {
if (delayExpression == null) {