Package ca.uhn.fhir.jpa.dao.data.custom
Interface IForcedIdQueries
- All Known Subinterfaces:
IResourceTableDao
- All Known Implementing Classes:
IResourceTableDaoImpl
public interface IForcedIdQueries
-
Method Summary
Modifier and TypeMethodDescriptionCollection
<Object[]> findAndResolveByForcedIdWithNoType
(String theResourceType, Collection<String> theForcedIds, boolean theExcludeDeleted) This method returns a Collection where each row is an element in the collection.Collection
<Object[]> findAndResolveByForcedIdWithNoTypeIncludeDeleted
(String theResourceType, Collection<String> theForcedIds) This method returns a Collection where each row is an element in the collection.Collection
<Object[]> findAndResolveByForcedIdWithNoTypeInPartition
(String theResourceType, Collection<String> theForcedIds, Collection<Integer> thePartitionId, boolean theExcludeDeleted) This method returns a Collection where each row is an element in the collection.Collection
<Object[]> findAndResolveByForcedIdWithNoTypeInPartitionIdOrNullPartitionId
(String theNextResourceType, Collection<String> theNextIds, List<Integer> thePartitionIdsWithoutDefault, boolean theExcludeDeleted) This method returns a Collection where each row is an element in the collection.Collection
<Object[]> findAndResolveByForcedIdWithNoTypeInPartitionNull
(String theResourceType, Collection<String> theForcedIds, boolean theExcludeDeleted) This method returns a Collection where each row is an element in the collection.
-
Method Details
-
findAndResolveByForcedIdWithNoTypeIncludeDeleted
Collection<Object[]> findAndResolveByForcedIdWithNoTypeIncludeDeleted(String theResourceType, Collection<String> theForcedIds) This method returns a Collection where each row is an element in the collection. Each element in the collection is an object array, where the order matters (the array represents columns returned by the query). Deleted resources should not be filtered. -
findAndResolveByForcedIdWithNoType
Collection<Object[]> findAndResolveByForcedIdWithNoType(String theResourceType, Collection<String> theForcedIds, boolean theExcludeDeleted) This method returns a Collection where each row is an element in the collection. Each element in the collection is an object array, where the order matters (the array represents columns returned by the query). Deleted resources are optionally filtered. -
findAndResolveByForcedIdWithNoTypeInPartition
Collection<Object[]> findAndResolveByForcedIdWithNoTypeInPartition(String theResourceType, Collection<String> theForcedIds, Collection<Integer> thePartitionId, boolean theExcludeDeleted) This method returns a Collection where each row is an element in the collection. Each element in the collection is an object array, where the order matters (the array represents columns returned by the query). Deleted resources are optionally filtered. -
findAndResolveByForcedIdWithNoTypeInPartitionNull
Collection<Object[]> findAndResolveByForcedIdWithNoTypeInPartitionNull(String theResourceType, Collection<String> theForcedIds, boolean theExcludeDeleted) This method returns a Collection where each row is an element in the collection. Each element in the collection is an object array, where the order matters (the array represents columns returned by the query). Deleted resources are optionally filtered. -
findAndResolveByForcedIdWithNoTypeInPartitionIdOrNullPartitionId
Collection<Object[]> findAndResolveByForcedIdWithNoTypeInPartitionIdOrNullPartitionId(String theNextResourceType, Collection<String> theNextIds, List<Integer> thePartitionIdsWithoutDefault, boolean theExcludeDeleted) This method returns a Collection where each row is an element in the collection. Each element in the collection is an object array, where the order matters (the array represents columns returned by the query). Deleted resources are optionally filtered.
-