Interface RequestMatching


public interface RequestMatching
Aspect providing means to match requests.
Since:
5.2.11
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    Aspect providing means to match requests.
  • Method Summary

    Modifier and Type
    Method
    Description
    @Nullable Match
    getMatch(String identifier, Request request, Language language)
    Provides a match object for the given data object with respect to the handed request and language.
  • Field Details

  • Method Details

    • getMatch

      @Nullable @Nullable Match getMatch(String identifier, Request request, Language language)
      Provides a match object for the given data object with respect to the handed request and language. If no match is found for any reason, this method shall return null.
      Parameters:
      identifier - The data object identifier.
      request - The request to be matched.
      language - The language of the data to match in.
      Returns:
      The match object for the request or null.
      Since:
      5.2.11