diff --git a/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/admin/RabbitBrokerAdmin.java b/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/admin/RabbitBrokerAdmin.java index 83f0047e..9f258564 100755 --- a/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/admin/RabbitBrokerAdmin.java +++ b/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/admin/RabbitBrokerAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at @@ -636,10 +636,6 @@ public class RabbitBrokerAdmin implements RabbitBrokerOperations { } } - public void recoverAsync(boolean requeue) { - // TODO Auto-generated method stub - } - protected void initializeDefaultErlangTemplate() { String peerNodeName = nodeName; logger.debug("Creating jinterface connection with peerNodeName = [" + peerNodeName + "]"); diff --git a/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/admin/RabbitBrokerOperations.java b/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/admin/RabbitBrokerOperations.java index 23d37536..eda9e136 100755 --- a/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/admin/RabbitBrokerOperations.java +++ b/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/admin/RabbitBrokerOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at @@ -21,7 +21,6 @@ import java.util.regex.Pattern; * Queues, Bindings, User, VHosts, etc.

Current implementations expose operations with basic type arguments via JMX. * * @author Mark Pollack - * */ public interface RabbitBrokerOperations { @@ -31,10 +30,6 @@ public interface RabbitBrokerOperations { public List getQueues(String virtualHost); - // Message Delivery - - void recoverAsync(boolean requeue); - // User management void addUser(String username, String password); @@ -113,4 +108,5 @@ public interface RabbitBrokerOperations { * @return status of the node. */ RabbitStatus getStatus(); + }