right now in SearchNarrowingInterceptor, we only want to search for "active" PractitionerRole but the searchparameter is custom since it's defined on one of our extension.
IBundleProvider rolesForPractitioner = practitionerRoleDao
.search(new SearchParameterMap().add(PractitionerRole.SP_PRACTITIONER, new ReferenceParam(practitionerId))
.add("permission-status", new TokenParam("active")));
we want to add the HAPI FHIR java model into jpaltime codebase so we don't have to use custom strings
https://www.smilecdr.com/our-blog/custom-search-parameters-in-hapi-fhir here's the StructureDef:
right now in SearchNarrowingInterceptor, we only want to search for "active" PractitionerRole but the searchparameter is custom since it's defined on one of our extension.
we want to add the HAPI FHIR java model into jpaltime codebase so we don't have to use custom strings