По какому рассписанию будет работать этот метод

public class AisPersonalAccountSchedulingService {
private final AisPersonalAccountPollingService pollingService;

@Scheduled(cron = “${smz.aispoller.poll.pa.cron}”)
@Scheduled(cron = “${smz.aispoller.poll.pa.25-27.cron}”)
public void poll() {
pollingService.poll(false);
}
}