All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.as.jdr.commands.TreeCommand Maven / Gradle / Ivy

There is a newer version: 33.0.2.Final
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package org.jboss.as.jdr.commands;

import org.jboss.as.jdr.util.FSTree;

public class TreeCommand extends JdrCommand {

    @Override
    public void execute() throws Exception {
        FSTree tree = new FSTree(this.env.getJbossHome());
        this.env.getZip().add(tree.toString(), "tree.txt");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy