git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1387097 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Claus Ibsen 2012-09-18 11:36:31 +00:00
parent 3d5a758666
commit b0bf0a2593
4 changed files with 1 additions and 11 deletions

View File

@ -75,7 +75,7 @@ public class WebConsoleStarter implements ServletContextListener {
context.stop();
context.destroy();
}
// do nothing, since the context is destoyed anyway
// do nothing, since the context is destroyed anyway
}
}

View File

@ -29,9 +29,6 @@ import org.springframework.web.servlet.mvc.Controller;
/**
* Copies a message from one to another queue
*
* @author <a href="http://www.nighttale.net">Dejan Bosanac</a>
*
*/
public class CopyMessage extends DestinationFacade implements Controller {
private String messageId;

View File

@ -29,9 +29,6 @@ import org.springframework.web.servlet.mvc.Controller;
/**
* Moves a message from one to another queue
*
* @author <a href="http://www.nighttale.net">Dejan Bosanac</a>
*
*/
public class MoveMessage extends DestinationFacade implements Controller {
private String messageId;
@ -62,8 +59,6 @@ public class MoveMessage extends DestinationFacade implements Controller {
public void setMessageId(String messageId) {
this.messageId = messageId;
}
public String getDestination() {
return destination;

View File

@ -31,8 +31,6 @@ import org.springframework.web.servlet.mvc.Controller;
/**
* Sends a message
*
*
*/
public class SendMessage extends DestinationFacade implements Controller {