Interface AlertEventFilterParams

  • All Superinterfaces:
    java.io.Serializable
    All Known Implementing Classes:
    DefaultAlertEventFilterParams

    public interface AlertEventFilterParams
    extends java.io.Serializable
    • Method Detail

      • getSystemFilter

        @Nullable
        java.lang.String getSystemFilter()
        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).
      • getPathFilter

        @Nullable
        java.lang.String getPathFilter()
        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).
      • getDisplayPathFilter

        @Nullable
        java.lang.String getDisplayPathFilter()
        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).
      • getStateNameFilter

        @Nullable
        java.lang.String getStateNameFilter()
        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).
      • getMinSeverityFilter

        @Nullable
        java.lang.Integer getMinSeverityFilter()
        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.
      • getMaxSeverityFilter

        @Nullable
        java.lang.Integer getMaxSeverityFilter()
        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.
      • isActiveAndAcked

        boolean isActiveAndAcked()
      • isActiveAndUnacked

        boolean isActiveAndUnacked()
      • isClearAndAcked

        boolean isClearAndAcked()
      • isClearAndUnacked

        boolean isClearAndUnacked()