Class PurgeCommand
- java.lang.Object
-
- org.apache.activemq.console.command.AbstractCommand
-
- org.apache.activemq.console.command.AbstractJmxCommand
-
- org.apache.activemq.console.command.PurgeCommand
-
- All Implemented Interfaces:
Command
public class PurgeCommand extends AbstractJmxCommand
-
-
Field Summary
Fields Modifier and Type Field Description protected String[]
helpFile
-
Fields inherited from class org.apache.activemq.console.command.AbstractJmxCommand
DEFAULT_JMX_URL
-
Fields inherited from class org.apache.activemq.console.command.AbstractCommand
COMMAND_OPTION_DELIMETER, context
-
-
Constructor Summary
Constructors Constructor Description PurgeCommand()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
convertToSQL92(List<String> tokens)
Converts the message selector as provided on command line argument to activem-admin into an SQL-92 conform string.String
getName()
String
getOneLineDescription()
protected void
handleOption(String token, List<String> tokens)
Handle the --msgsel, --xmsgsel.protected void
printHelp()
Print the help messages for the browse commandvoid
purgeQueue(ObjectName queue)
Purge all the messages in the queueprotected void
runTask(List<String> tokens)
Execute the purge command, which allows you to purge the messages in a given JMS destination-
Methods inherited from class org.apache.activemq.console.command.AbstractJmxCommand
closeJmxConnection, createJmxConnection, execute, findJMXUrlByProcessId, getJmxPassword, getJmxServiceUrl, getJmxUser, getJVM, isJmxUseLocal, isSunJVM, setJmxPassword, setJmxServiceUrl, setJmxServiceUrl, setJmxUseLocal, setJmxUser, useJmxServiceUrl
-
Methods inherited from class org.apache.activemq.console.command.AbstractCommand
handleException, parseOptions, printHelpFromFile, setCommandContext
-
-
-
-
Field Detail
-
helpFile
protected String[] helpFile
-
-
Method Detail
-
getName
public String getName()
-
getOneLineDescription
public String getOneLineDescription()
-
runTask
protected void runTask(List<String> tokens) throws Exception
Execute the purge command, which allows you to purge the messages in a given JMS destination- Specified by:
runTask
in classAbstractCommand
- Parameters:
tokens
- - command arguments- Throws:
Exception
-
purgeQueue
public void purgeQueue(ObjectName queue) throws Exception
Purge all the messages in the queue- Parameters:
queue
- - ObjectName of the queue to purge- Throws:
Exception
-
handleOption
protected void handleOption(String token, List<String> tokens) throws Exception
Handle the --msgsel, --xmsgsel.- Overrides:
handleOption
in classAbstractJmxCommand
- Parameters:
token
- - option token to handletokens
- - succeeding command arguments- Throws:
Exception
-
convertToSQL92
public String convertToSQL92(List<String> tokens)
Converts the message selector as provided on command line argument to activem-admin into an SQL-92 conform string. E.g. "JMSMessageID='*:10',JMSPriority>5" gets converted into "(JMSMessageID='%:10') AND (JMSPriority>5)"- Parameters:
tokens
- - List of message selector query parameters- Returns:
- SQL-92 string of that query.
-
printHelp
protected void printHelp()
Print the help messages for the browse command- Specified by:
printHelp
in classAbstractCommand
-
-