Class DefaultAlertEventFilterParams

    • Constructor Summary

      Constructors 
      Constructor Description
      DefaultAlertEventFilterParams​(java.lang.String systemFilter, java.lang.String pathFilter, java.lang.String displayPathFilter, java.lang.String stateNameFilter, java.lang.Integer minSeverityFilter, java.lang.Integer maxSeverityFilter, boolean activeAndUnacked, boolean activeAndAcked, boolean clearAndUnacked, boolean clearAndAcked)  
    • Constructor Detail

      • DefaultAlertEventFilterParams

        public DefaultAlertEventFilterParams​(java.lang.String systemFilter,
                                             java.lang.String pathFilter,
                                             java.lang.String displayPathFilter,
                                             java.lang.String stateNameFilter,
                                             java.lang.Integer minSeverityFilter,
                                             java.lang.Integer maxSeverityFilter,
                                             boolean activeAndUnacked,
                                             boolean activeAndAcked,
                                             boolean clearAndUnacked,
                                             boolean clearAndAcked)
    • Method Detail

      • getMaxSeverityFilter

        public java.lang.Integer getMaxSeverityFilter()
        Description copied from interface: AlertEventFilterParams
        Returns the max severity filter or null if filter is not specified. If specified, it filters alerts that have severity less than or equal to the given value.
        Specified by:
        getMaxSeverityFilter in interface AlertEventFilterParams
      • getMinSeverityFilter

        public java.lang.Integer getMinSeverityFilter()
        Description copied from interface: AlertEventFilterParams
        Returns the min severity filter or null if filter is not specified. If specified, it filters alerts that have severity greater than or equal to the given value.
        Specified by:
        getMinSeverityFilter in interface AlertEventFilterParams
      • getPathFilter

        public java.lang.String getPathFilter()
        Description copied from interface: AlertEventFilterParams
        Returns the path filter or null if filter is not specified. If specified, it matches the alert's path to the given filter. May include a wildcard character of '%' which means any characters (zero or more).
        Specified by:
        getPathFilter in interface AlertEventFilterParams
      • getDisplayPathFilter

        public java.lang.String getDisplayPathFilter()
        Description copied from interface: AlertEventFilterParams
        Returns the display path filter or null if filter is not specified. If specified, it matches the alert's display path to the given filter. May include a wildcard character of '%' which means any characters (zero or more).
        Specified by:
        getDisplayPathFilter in interface AlertEventFilterParams
      • getStateNameFilter

        public java.lang.String getStateNameFilter()
        Description copied from interface: AlertEventFilterParams
        Returns the state name filter or null if filter is not specified. If specified, it matches the alert's state name to the given filter. May include a wildcard character of '%' which means any characters (zero or more).
        Specified by:
        getStateNameFilter in interface AlertEventFilterParams
      • getSystemFilter

        public java.lang.String getSystemFilter()
        Description copied from interface: AlertEventFilterParams
        Returns the system filter or null if filter is not specified. If specified, it matches the SCADARail system the alert is in to the given filter. May include a wildcard character of '%' which means any characters (zero or more).
        Specified by:
        getSystemFilter in interface AlertEventFilterParams