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) {