Examples of JdrZipFile


Examples of org.jboss.as.jdr.util.JdrZipFile

    }

    public JdrReport collect() throws OperationFailedException {

        try {
            this.env.setZip(new JdrZipFile(new JdrEnvironment(this.env)));
        }
        catch (Exception e) {
            ROOT_LOGGER.error(ROOT_LOGGER.couldNotCreateZipfile(), e);
            throw new OperationFailedException(JdrLogger.ROOT_LOGGER.couldNotCreateZipfile());
        }
View Full Code Here

Examples of org.jboss.as.jdr.util.JdrZipFile

        JdrEnvironment env = new JdrEnvironment();
        env.setJbossHome("/foo/bar/baz");
        env.setHostControllerName("host");
        env.setOutputDirectory("target");
        String name;
        JdrZipFile zf = new JdrZipFile(env);
        try {
            name = zf.name();
            zf.close();
        }
        finally {
            safeClose(zf);
            File f = new File(zf.name());
            f.delete();
        }

        assertTrue(name.endsWith(".zip"));
        assertTrue(name.contains("host"));
View Full Code Here

Examples of org.jboss.as.jdr.util.JdrZipFile

    }

    public JdrReport collect() throws OperationFailedException {

        try {
            this.env.setZip(new JdrZipFile(new JdrEnvironment(this.env)));
        }
        catch (Exception e) {
            ROOT_LOGGER.couldNotCreateZipfile(e);
            throw MESSAGES.couldNotCreateZipfile();
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.