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

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


        RepoSource repoSource = (RepoSource) provider;

        long start = System.currentTimeMillis();

        // Call to the plugin
        RepoImportReport report = repoSource.importRepos();

        Subject overlord = subjectManager.getOverlord();
        repoManager.processRepoImportReport(overlord, report, source.getId(), progress);

        log.info("importRepos: [" + source.getName() + "]: report has been merged ("
View Full Code Here


        this.rootDirectoryAbsolutePath = null;
        this.supportedPackageTypes = null;
    }

    public RepoImportReport importRepos() throws Exception {
        RepoImportReport report = new RepoImportReport();

        if (!isRepoSource) {
            return report;
        }
View Full Code Here

    }

    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.RepoImportReport

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.