public static void getTimerEventValues(HandlerContext handlerCtx) {
try{
String configName = (String) handlerCtx.getInputValue("ConfigName"); //NOI18N
String ruleName = (String) handlerCtx.getInputValue("RuleName"); //NOI18N
ConfigConfig config = AMXUtil.getConfig(configName);
ManagementRuleConfig mgRuleConfig = config.getManagementRulesConfig().getManagementRuleConfigMap().get(ruleName);
Map<String,String> propMap = mgRuleConfig.getEventConfig().getProperties();
handlerCtx.setOutputValue("DateString", propMap.get("datestring")); //NOI18N
handlerCtx.setOutputValue("Pattern", propMap.get("pattern")); //NOI18N
handlerCtx.setOutputValue("Period", propMap.get("period")); //NOI18N
handlerCtx.setOutputValue("NoOccurences", propMap.get("numberofoccurrences")); //NOI18N