Package org.rhq.enterprise.server.support

Examples of org.rhq.enterprise.server.support.SupportManagerLocal


        this.resourceId = resourceId;
    }

    public String getReport() throws Exception {
        log.info("Obtaining JDR report for resourceId=" + resourceId);
        SupportManagerLocal supportMgr = LookupUtil.getSupportManager();
        InputStream is = null;
        try {
            is = supportMgr.getSnapshotReportStream(LookupUtil.getSubjectManager().getOverlord(), resourceId,
            "jdr", null);
        } catch (Exception e) {
            throw new JdrReportFailedException(e.getMessage());
        }
        if (is == null) {
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.server.support.SupportManagerLocal

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.