Package org.apache.activemq.console.command.store

Examples of org.apache.activemq.console.command.store.StoreExporter


        return "Exports a stopped brokers data files to an archive file";
    }

    @Override
    public void execute(List<String> tokens) throws Exception {
        StoreExporter exporter = new StoreExporter();
        String[] remaining = CommandLineSupport.setOptions(exporter, tokens.toArray(new String[tokens.size()]));
        if (remaining.length > 0) {
          throw new Exception("Unexpected arguments: " + Arrays.asList(remaining));
        }
        exporter.execute();
    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.console.command.store.StoreExporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.