Package org.rhq.enterprise.server.plugin.pc.content

Examples of org.rhq.enterprise.server.plugin.pc.content.RepoDetails


        for (File file : base.listFiles()) {

            if (file.isDirectory()) {

                // Add this as a new repo
                RepoDetails repo = new RepoDetails(file.getName(), parentName);
                report.addRepo(repo);

                // Check to see if there are any child repos
                generateRepoDetails(report, file, repo.getName());
            }
        }
    }
View Full Code Here


        return stream;
    }

    public RepoImportReport importRepos() throws Exception {
        RepoDetails repo = new RepoDetails("JBoss Patches");

        RepoImportReport report = new RepoImportReport();
        report.addRepo(repo);

        return report;
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.server.plugin.pc.content.RepoDetails

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.