/**
  * Wrapper for the static method {@link ApplicationManager#search(Subject, String, Set)}.
  *
  * @param subject The subject authorizing the update - will be validated for permission.
  * @param realm The realm from which to gather the {@link Application} names.
  * @param searchFilters The constraints that must match Application attribute values.
  * @return the names of those Applications that match the filter.
  * @throws EntitlementException if there were problems retrieving the names
  * @since 12.0.0
  */
 public Set<String> search(Subject subject, String realm, Set<SearchFilter> searchFilters)
     throws EntitlementException {
   return ApplicationManager.search(subject, realm, searchFilters);
 }