INT-3531 Update to Spring Framework 4.1.2

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

INT-3531 Fix Stub AMQP Channel

Compatibility with 3.4.x amqp-client.
This commit is contained in:
Gary Russell
2014-11-11 17:47:26 +02:00
committed by Artem Bilan
parent 5e0c7a1f19
commit 84b182162f
3 changed files with 50 additions and 7 deletions

View File

@@ -537,6 +537,40 @@ public class StubRabbitConnectionFactory implements ConnectionFactory {
public void basicPublish(String arg0, String arg1, boolean arg2, BasicProperties arg3, byte[] arg4)
throws IOException {
}
@Override
public void exchangeDeclareNoWait(String exchange, String type, boolean durable, boolean autoDelete,
boolean internal, Map<String, Object> arguments) throws IOException {
}
@Override
public void exchangeDeleteNoWait(String exchange, boolean ifUnused) throws IOException {
}
@Override
public void exchangeBindNoWait(String destination, String source, String routingKey,
Map<String, Object> arguments) throws IOException {
}
@Override
public void exchangeUnbindNoWait(String destination, String source, String routingKey,
Map<String, Object> arguments) throws IOException {
}
@Override
public void queueDeclareNoWait(String queue, boolean durable, boolean exclusive, boolean autoDelete,
Map<String, Object> arguments) throws IOException {
}
@Override
public void queueDeleteNoWait(String queue, boolean ifUnused, boolean ifEmpty) throws IOException {
}
@Override
public void queueBindNoWait(String queue, String exchange, String routingKey, Map<String, Object> arguments)
throws IOException {
}
}
}