Interface ConfigurationSearchFilter

  • All Known Implementing Classes:
    DefaultConfigurationSearchFilter

    public interface ConfigurationSearchFilter
    Interface that filters possible configuration searches.

    It is possible that in some situations there is no need to execute a particular search, as it is already known as empty. In this case ConfigurationSearchFilter may filter such search out.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean filter​(java.lang.String name, java.lang.String value)
      Checks whether there is a need of executing particular search.
    • Method Detail

      • filter

        boolean filter​(java.lang.String name,
                       java.lang.String value)
        Checks whether there is a need of executing particular search.
        Parameters:
        name - name of attribute that is about to change
        value - new value of attribute
        Returns:
        true if this search may be omitted, false otherwise