001package ca.uhn.fhir.jpa.mdm.svc; 002 003/*- 004 * #%L 005 * HAPI FHIR JPA Server - Master Data Management 006 * %% 007 * Copyright (C) 2014 - 2022 Smile CDR, Inc. 008 * %% 009 * Licensed under the Apache License, Version 2.0 (the "License"); 010 * you may not use this file except in compliance with the License. 011 * You may obtain a copy of the License at 012 * 013 * http://www.apache.org/licenses/LICENSE-2.0 014 * 015 * Unless required by applicable law or agreed to in writing, software 016 * distributed under the License is distributed on an "AS IS" BASIS, 017 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 018 * See the License for the specific language governing permissions and 019 * limitations under the License. 020 * #L% 021 */ 022 023import ca.uhn.fhir.jpa.mdm.dao.MdmLinkDaoSvc; 024import ca.uhn.fhir.mdm.api.IMdmLink; 025import ca.uhn.fhir.mdm.api.IMdmLinkQuerySvc; 026import ca.uhn.fhir.mdm.api.MdmLinkJson; 027import ca.uhn.fhir.mdm.api.MdmLinkSourceEnum; 028import ca.uhn.fhir.mdm.api.MdmMatchResultEnum; 029import ca.uhn.fhir.mdm.api.paging.MdmPageRequest; 030import ca.uhn.fhir.mdm.model.MdmTransactionContext; 031import org.hl7.fhir.instance.model.api.IIdType; 032import org.slf4j.Logger; 033import org.slf4j.LoggerFactory; 034import org.springframework.beans.factory.annotation.Autowired; 035import org.springframework.data.domain.Page; 036import org.springframework.transaction.annotation.Transactional; 037 038import java.util.List; 039 040public class MdmLinkQuerySvcImplSvc implements IMdmLinkQuerySvc { 041 042 private static final Logger ourLog = LoggerFactory.getLogger(MdmLinkQuerySvcImplSvc.class); 043 044 @Autowired 045 MdmLinkDaoSvc myMdmLinkDaoSvc; 046 047 @Autowired 048 IMdmModelConverterSvc myMdmModelConverterSvc; 049 050 @Override 051 @Deprecated 052 @Transactional 053 public Page<MdmLinkJson> queryLinks(IIdType theGoldenResourceId, IIdType theSourceResourceId, MdmMatchResultEnum theMatchResult, MdmLinkSourceEnum theLinkSource, MdmTransactionContext theMdmContext, MdmPageRequest thePageRequest) { 054 return queryLinks(theGoldenResourceId, theSourceResourceId, theMatchResult, theLinkSource, theMdmContext, thePageRequest, null); 055 } 056 057 @Override 058 @Transactional 059 public Page<MdmLinkJson> queryLinks(IIdType theGoldenResourceId, IIdType theSourceResourceId, MdmMatchResultEnum theMatchResult, MdmLinkSourceEnum theLinkSource, MdmTransactionContext theMdmContext, MdmPageRequest thePageRequest, List<Integer> thePartitionId) { 060 Page<? extends IMdmLink> mdmLinks = myMdmLinkDaoSvc.executeTypedQuery(theGoldenResourceId, theSourceResourceId, theMatchResult, theLinkSource, thePageRequest, thePartitionId); 061 return mdmLinks.map(myMdmModelConverterSvc::toJson); 062 } 063 064 @Override 065 @Transactional 066 public Page<MdmLinkJson> getDuplicateGoldenResources(MdmTransactionContext theMdmContext, MdmPageRequest thePageRequest) { 067 return getDuplicateGoldenResources(theMdmContext, thePageRequest, null); 068 } 069 070 @Override 071 @Transactional 072 public Page<MdmLinkJson> getDuplicateGoldenResources(MdmTransactionContext theMdmContext, MdmPageRequest thePageRequest, List<Integer> thePartitionId) { 073 Page<? extends IMdmLink> mdmLinkPage = myMdmLinkDaoSvc.executeTypedQuery(null, null, MdmMatchResultEnum.POSSIBLE_DUPLICATE, null, thePageRequest, thePartitionId); 074 return mdmLinkPage.map(myMdmModelConverterSvc::toJson); 075 } 076}