ca.uhn.fhir.mdm.util.MdmSearchParamBuildingUtils Maven / Gradle / Ivy
/*-
* #%L
* HAPI FHIR - Master Data Management
* %%
* Copyright (C) 2014 - 2024 Smile CDR, Inc.
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package ca.uhn.fhir.mdm.util;
import ca.uhn.fhir.jpa.searchparam.SearchParameterMap;
import ca.uhn.fhir.mdm.api.MdmConstants;
import ca.uhn.fhir.mdm.rules.json.MdmRulesJson;
import ca.uhn.fhir.rest.param.TokenAndListParam;
import ca.uhn.fhir.rest.param.TokenParam;
public class MdmSearchParamBuildingUtils {
private static final String IDENTIFIER = "identifier";
private static final String TAG = "_tag";
/**
* Builds a search parameter map that can be used to find the
* golden resources associated with MDM blocked resources (ie, those
* resources that were omitted from MDM matching).
*/
public static SearchParameterMap buildSearchParameterForBlockedResourceCount(String theResourceType) {
SearchParameterMap map = new SearchParameterMap();
map.setLoadSynchronous(true);
TokenAndListParam tagsToSearch = new TokenAndListParam();
tagsToSearch.addAnd(new TokenParam(MdmConstants.SYSTEM_GOLDEN_RECORD_STATUS, MdmConstants.CODE_GOLDEN_RECORD));
tagsToSearch.addAnd(new TokenParam(MdmConstants.SYSTEM_GOLDEN_RECORD_STATUS, MdmConstants.CODE_BLOCKED));
map.add(TAG, tagsToSearch);
return map;
}
/**
* Creates a SearchParameterMap used for searching for golden resources
* by EID specifically.
*/
public static SearchParameterMap buildEidSearchParameterMap(
String theEid, String theResourceType, MdmRulesJson theMdmRules) {
SearchParameterMap map = buildBasicGoldenResourceSearchParameterMap(theEid);
map.add(IDENTIFIER, new TokenParam(theMdmRules.getEnterpriseEIDSystemForResourceType(theResourceType), theEid));
return map;
}
/**
* Creates a SearchParameterMap that can be used to find golden resources.
*/
public static SearchParameterMap buildBasicGoldenResourceSearchParameterMap(String theResourceType) {
SearchParameterMap map = new SearchParameterMap();
map.setLoadSynchronous(true);
map.add(TAG, new TokenParam(MdmConstants.SYSTEM_GOLDEN_RECORD_STATUS, MdmConstants.CODE_GOLDEN_RECORD));
return map;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy