Package org.apache.jackrabbit.vault.vlt.actions

Examples of org.apache.jackrabbit.vault.vlt.actions.Debug


    protected void doExecute(VaultFsApp app, CommandLine cl) throws Exception {
        File localDir = app.getPlatformFile("", true);
        List<String> commands = cl.getValues(argCommand);
        for (String cmd: commands) {
            if (cmd.equals("binary")) {
                Debug dbg = new Debug(localDir);
                VltContext vCtx = app.createVaultContext(localDir);
                vCtx.setVerbose(cl.hasOption(OPT_VERBOSE));
                vCtx.setQuiet(cl.hasOption(OPT_QUIET));
                vCtx.execute(dbg);
            }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.vault.vlt.actions.Debug

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.