我们如何在 Sailpoint IIQ 中设置日期范围

How do we set daterange in Sailpoint IIQ

我正在尝试动态设置报告的日期范围。但似乎我正在使用的包没有按预期实现接口 Serializable 。你知道我如何使用 Sailpoint 处理日期范围吗?这是我的包裹:org.jfree.data.time.DateRange

当我设置一个字符串对象时,我没有收到任何错误,而我正在使用 dateRange:

java.lang.Exception: sailpoint.tools.GeneralException:
  The application script threw an exception:
    sailpoint.tools.xml.ConfigurationException:
      No serializer registered for class class org.jfree.data.time.DateRange

当我在保存对象后执行 context.commitTransaction() 时发生了。

谢谢

我找到了解决方案。 Daterange 不是对象的类型,它只是接口上的精度。如果您要设置日期范围,请执行此操作:

 TaskDefinition task = context.getObjectByName(TaskDefinition.class, "The name of the report");
  Map map = new HashMap();
  map.put("end",end_date_convert_in_long); 
  map.put("start",start_date_convert_in_long); 
  task.setArgument("the name of the variable", map); 
  context.saveObject(task);
  context.commitTransaction();