Package org.rhq.core.domain.alert

Examples of org.rhq.core.domain.alert.AlertCondition


    public AlertConditionResourceConfigurationCategoryComposite(
            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer resourceId,
        Configuration currentResourceConfiguration) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId));
        this.resourceId = resourceId;
        this.resourceConfiguration = currentResourceConfiguration;
    }
View Full Code Here


    private final Integer resourceId;

    public AlertConditionDriftCategoryComposite(
            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer resourceId) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId));
        this.resourceId = resourceId;
    }
View Full Code Here

    }

    public AlertConditionScheduleCategoryComposite(
            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer scheduleId, DataType dataType) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId));
        this.scheduleId = scheduleId;
        this.dataType = dataType;
    }
View Full Code Here

            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer alertDefinitionId,
        Integer resourceId,
        AvailabilityType availabilityType) {

        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId));
        this.alertDefinitionId = alertDefinitionId;
        this.resourceId = resourceId;
        // For a resource with no Availability records we initialize to UNKNOWN
        this.availabilityType = (null != availabilityType) ? availabilityType : AvailabilityType.UNKNOWN;
    }
View Full Code Here

    private final DataType dataType;

    public AlertConditionRangeCategoryComposite(
            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer scheduleId, DataType dataType) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId));
        this.scheduleId = scheduleId;
        this.dataType = dataType;
    }
View Full Code Here

*/
public class AlertConditionChangesCategoryComposite extends AlertConditionScheduleCategoryComposite {

    public AlertConditionChangesCategoryComposite(int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer scheduleId, DataType dataType) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId),
                scheduleId, dataType);
    }
View Full Code Here

    public AlertConditionBaselineCategoryComposite(
            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer scheduleId, Integer baselineId,
        Double minValue, Double meanValue, Double maxValue, DataType dataType) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId),
                scheduleId, dataType);
        this.baselineId = baselineId;
        this.minValue = minValue;
        this.meanValue = meanValue;
        this.maxValue = maxValue;
View Full Code Here

    private final Integer resourceId;

    public AlertConditionEventCategoryComposite(
            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer resourceId) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId));
        this.resourceId = resourceId;
    }
View Full Code Here

    private final String value;

    public AlertConditionTraitCategoryComposite(
            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer scheduleId, String value) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId),
                scheduleId, DataType.TRAIT);
        this.value = value;
    }
View Full Code Here

    public AlertConditionControlCategoryComposite(
            int cid, AlertConditionCategory ccategory, String cname, String ccomparator, Double cthreshold, String coption, Integer triggerId,
            Integer resourceId,
        Integer operationDefinitionId) {
        super(new AlertCondition(cid, ccategory, cname, ccomparator, cthreshold, coption, triggerId));
        this.resourceId = resourceId;
        this.operationDefinitionId = operationDefinitionId;
    }
View Full Code Here

TOP

Related Classes of org.rhq.core.domain.alert.AlertCondition

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.