Class SearchResponse


This class represents the response to a FHIR Gateway Search request
  • Constructor Details

  • Method Details

    • getSearchResults

      @Nonnull public List<IBaseResource> getSearchResults()
      Provides the list of resources that were responded by the gateway target server. Interceptors may modify this list, modify entries in this list, or even add/remove entries from the list.
    • setSearchResults

      public void setSearchResults(@Nonnull List<IBaseResource> theSearchResults)
      Provides the list of resources that were responded by the gateway target server. Interceptors may modify this list, modify entries in this list, or even add/remove entries from the list.
    • clone

      Create a clone of this object using a shallow copy only. Values are copied by reference only, so things like Resources should only be modified if you are sure that the changes won't affect the value stored in cache.
      Specified by:
      clone in class BaseResponse<SearchResponse>