
Package ca.uhn.fhir.svcs
Interface ISearchLimiterSvc
public interface ISearchLimiterSvc
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addOmittedResourceType
(String theOperationName, String theResourceType) Add a resource type to omit from all search results for the named operation.getResourcesToOmitForOperationSearches
(String theOperationName) Get all omitted resources for the named operation.void
removeAllResourcesForOperation
(String theOperationName) Remove all omitted resource types for the operation.void
removeOmittedResourceType
(String theOperationName, String theResourceType) Remove the resource type from the omission criteria.
-
Method Details
-
addOmittedResourceType
Add a resource type to omit from all search results for the named operation.- Parameters:
theOperationName
- operation name (eg: $everything, $export, etc)theResourceType
- the resource name to omit (eg: Group, List, etc)
-
getResourcesToOmitForOperationSearches
Get all omitted resources for the named operation. -
removeOmittedResourceType
Remove the resource type from the omission criteria.- Parameters:
theOperationName
- the operation nametheResourceType
- the resource type to remove
-
removeAllResourcesForOperation
Remove all omitted resource types for the operation.- Parameters:
theOperationName
- the operation name
-