Add setters
This commit is contained in:
parent
d320b78ae1
commit
15748f4d54
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue