hello,
i want to understand how using @Autowired for
public class AbstractIdmService {
@Autowired
protected IdmIdentityService identityService;
How depend IdmIdentityService interface? When i simulate same codebase, i got ;
Field robustaWorkerDefinitionService in org.flowable.ui.admin.service.RobustaAbstractWorkerService required a bean of type ‘org.flowable.idm.api.RobustaWorkerDefinitionService’ that could not be found.
How or where can i define for use my interface on flowable-idm-app? i try simulate on flowable-ui-admin.
thank you