How to use java-action Core.getConfiguration().getScheduledEventExecution()

0
How to retrieve information on the scheduled events’ planning? I use “Core.getConfiguration().getMyScheduledEvents();” to retrieve the names of the ScE's, but now I am trying to retrieve their details using this piece of code so far in a java-action: String ScheduledEvents = new String(); java.util.Set<java.lang.String> ScEs = Core.getConfiguration().getMyScheduledEvents(); for (String ScE : ScEs) { ScheduledEvents += "{\"ScEName\":\"" + ScE + "\"},"; com.mendix.core.conf.Configuration.ScheduledEventExecution ScEExecution = Core.getConfiguration().getScheduledEventExecution(); } return "[" + ScheduledEvents + "]"; Got some info on “https://apidocs.rnd.mendix.com/8/runtime/com/mendix/core/conf/Configuration.html#getScheduledEventExecution()”, but still I have no idea how to read and return the Execution-details.  
asked
0 answers