Examples of fetchRecoveryAlertDefinition()


Examples of org.rhq.core.domain.criteria.AlertCriteria.fetchRecoveryAlertDefinition()

            if ((resourceIds != null) && (resourceIds.length > 0)) {
                criteria.addFilterResourceIds(resourceIds);
            }
        }
        criteria.fetchAlertDefinition(true);
        criteria.fetchRecoveryAlertDefinition(true);
        criteria.fetchConditionLogs(true);
        return criteria;
    }

    public String getAlertResourcesToUse() {
View Full Code Here

Examples of org.rhq.core.domain.criteria.AlertCriteria.fetchRecoveryAlertDefinition()

        AlertCriteria criteria = new AlertCriteria();
        criteria.setPageControl(PageControl.getUnlimitedInstance());
        criteria.fetchAlertDefinition(false);
        criteria.fetchConditionLogs(false);
        criteria.fetchRecoveryAlertDefinition(false);
        criteria.fetchNotificationLogs(false);
        criteria.setRestriction(Criteria.Restriction.COUNT_ONLY);
        if (since!=null) {
            criteria.addFilterStartTime(since);
        }
View Full Code Here

Examples of org.rhq.core.domain.criteria.AlertCriteria.fetchRecoveryAlertDefinition()

                // no default
                break;
            }

            criteria.fetchAlertDefinition(true);
            criteria.fetchRecoveryAlertDefinition(true);
            criteria.fetchConditionLogs(true);

            return criteria;
        }
    }
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.