Add setters

This commit is contained in:
jamesagnew 2021-10-04 07:41:24 -04:00
parent d320b78ae1
commit 15748f4d54
1 changed files with 12 additions and 0 deletions

View File

@ -57,6 +57,18 @@ public class ValueSetOperationProvider extends BaseJpaProvider {
@Autowired
private ITermReadSvc myTermReadSvc;
public void setDaoConfig(DaoConfig theDaoConfig) {
myDaoConfig = theDaoConfig;
}
public void setDaoRegistry(DaoRegistry theDaoRegistry) {
myDaoRegistry = theDaoRegistry;
}
public void setTermReadSvc(ITermReadSvc theTermReadSvc) {
myTermReadSvc = theTermReadSvc;
}
@Operation(name = JpaConstants.OPERATION_EXPAND, idempotent = true, typeName = "ValueSet")
public IBaseResource expand(
HttpServletRequest theServletRequest,