}
}
void invokeSetMethod(Method method, Object[] args) {
final String name = getVariableNameForMethod(method);
final ConfigVar annotation = getAnnotationForVariable(name);
if(annotation != null && annotation.type() == ConfigVarType.INTERVAL) {
setIntervalValue(name, args);
} else {
configValues.put(name, args[0]);
}
}